From 6e73fda81271d8b7c235449cba3360d77cb39004 Mon Sep 17 00:00:00 2001 From: BlazerBo1 <116039257+AstralButOnGitHub@users.noreply.github.com> Date: Sat, 3 Jan 2026 09:16:51 -0600 Subject: [PATCH 1/7] HeadLamp SneakWrenching, NixieBoard PlacementHelper, Lightbulb Particles. --- .../content/light/headlamp/HeadlampBlock.java | 43 +++++++++++--- .../nixie_board/NixieBoardBlockNixie.java | 56 +++++++++++++++++++ .../block/lightbulb/lightbulb_uncaged.json | 3 +- 3 files changed, 93 insertions(+), 9 deletions(-) diff --git a/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java b/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java index 773e4606..1ce7155e 100644 --- a/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java +++ b/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java @@ -1,5 +1,6 @@ package com.kipti.bnb.content.light.headlamp; +import com.kipti.bnb.CreateBitsnBobs; import com.kipti.bnb.content.light.founation.LightBlock; import com.kipti.bnb.registry.BnbBlockEntities; import com.kipti.bnb.registry.BnbBlocks; @@ -8,6 +9,7 @@ import com.simibubi.create.foundation.block.IBE; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; +import net.minecraft.server.level.ServerLevel; import net.minecraft.sounds.SoundSource; import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; @@ -22,6 +24,7 @@ import net.minecraft.world.item.context.UseOnContext; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Rotation; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.state.BlockState; @@ -33,11 +36,15 @@ import net.minecraft.world.phys.shapes.CollisionContext; import net.minecraft.world.phys.shapes.Shapes; import net.minecraft.world.phys.shapes.VoxelShape; +import net.neoforged.neoforge.common.NeoForge; +import net.neoforged.neoforge.event.level.BlockEvent; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; +import java.util.Arrays; + //TODO SpecialBlockItemRequirement -public class HeadlampBlock extends LightBlock implements IBE { +public class HeadlampBlock extends LightBlock implements IBE, IWrenchable{ public HeadlampBlock(Properties p_52591_) { super(p_52591_, BnbShapes.LIGHTBULB_SHAPE); @@ -168,16 +175,36 @@ protected void onRemove(BlockState state, Level level, BlockPos pos, BlockState @Override public InteractionResult onSneakWrenched(BlockState state, UseOnContext context) { + Level world = context.getLevel(); + BlockPos pos = context.getClickedPos(); + Player player = context.getPlayer(); + HeadlampBlockEntity headlampBlockEntity = (HeadlampBlockEntity) context.getLevel().getBlockEntity(pos); Vec3 location = getPlayerLocationInBlockExact(context.getClickedPos(), context.getLevel(), context.getPlayer()); - if (context.getLevel().getBlockEntity(context.getClickedPos()) instanceof HeadlampBlockEntity headlampBlockEntity && - headlampBlockEntity.removeNearestHeadlamp(location.subtract(context.getClickedPos().getCenter()), state.getValue(FACING))) { - if (!context.getLevel().isClientSide && !context.getPlayer().isCreative()) { - context.getPlayer().addItem(BnbBlocks.HEADLAMP.asStack()); - } - IWrenchable.playRemoveSound(context.getLevel(), context.getClickedPos()); + + if (!(world instanceof ServerLevel serverLevel)) return InteractionResult.SUCCESS; + + BlockEvent.BreakEvent event = new BlockEvent.BreakEvent(world, pos, world.getBlockState(pos), player); + NeoForge.EVENT_BUS.post(event); + if (event.isCanceled()) + return InteractionResult.SUCCESS; + + if (player != null && !player.isCreative()) { + Block.getDrops(state, serverLevel, pos, world.getBlockEntity(pos), player, context.getItemInHand()).forEach(itemStack -> player.getInventory().placeItemBackInInventory(itemStack)); } - return super.onSneakWrenched(state, context); + + state.spawnAfterBreak(serverLevel, pos, ItemStack.EMPTY, true); + + // middle headlamps is sometimes weird. + if (headlampBlockEntity.getExistingPlacements().toArray().length > 1) { + headlampBlockEntity.removeNearestHeadlamp(location.subtract(context.getClickedPos().getCenter()), state.getValue(FACING)); + } else { + world.destroyBlock(pos, false); + } + + + IWrenchable.playRemoveSound(world, pos); + return InteractionResult.SUCCESS; } @Override diff --git a/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java b/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java index 28889fe6..3c3a2357 100644 --- a/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java +++ b/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java @@ -4,13 +4,20 @@ import com.kipti.bnb.registry.BnbBlockEntities; import com.kipti.bnb.registry.BnbBlocks; import com.kipti.bnb.registry.BnbShapes; +import com.simibubi.create.AllBlocks; +import com.simibubi.create.content.contraptions.bearing.SailBlock; import com.simibubi.create.content.equipment.wrench.IWrenchable; import com.simibubi.create.foundation.block.IBE; +import net.createmod.catnip.placement.IPlacementHelper; +import net.createmod.catnip.placement.PlacementHelpers; +import net.createmod.catnip.placement.PlacementOffset; +import net.minecraft.MethodsReturnNonnullByDefault; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.InteractionHand; import net.minecraft.world.ItemInteractionResult; import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.DyeColor; import net.minecraft.world.item.DyeItem; import net.minecraft.world.item.ItemStack; @@ -32,6 +39,7 @@ import org.jetbrains.annotations.Nullable; import java.util.List; +import java.util.function.Predicate; public class NixieBoardBlockNixie extends GenericNixieDisplayBlock implements IBE, IWrenchable, DyeProviderBlock, IGenericNixieDisplayBlock { @@ -41,6 +49,7 @@ public class NixieBoardBlockNixie extends GenericNixieDisplayBlock implements IB public static final BooleanProperty TOP = BooleanProperty.create("top"); final @Nullable DyeColor dyeColor; + private static final int placementHelperId = PlacementHelpers.register(new PlacementHelper()); public NixieBoardBlockNixie(final Properties p_52591_, @Nullable final DyeColor dyeColor) { super(p_52591_); @@ -98,6 +107,15 @@ protected BlockState updateShape(final BlockState state, final Direction directi @Override protected ItemInteractionResult useItemOn(final ItemStack stack, final BlockState state, final Level level, final BlockPos pos, final Player player, final InteractionHand hand, final BlockHitResult hitResult) { final ItemStack heldItem = player.getItemInHand(hand); + + IPlacementHelper placementHelper = PlacementHelpers.get(placementHelperId); + if (!player.isShiftKeyDown() && player.mayBuild()) { + if (placementHelper.matchesItem(stack)) { + placementHelper.getOffset(player, level, state, pos, hitResult) + .placeInWorld(level, (BlockItem) stack.getItem(), player, hand, hitResult); + return ItemInteractionResult.SUCCESS; + } + } if (heldItem.getItem() instanceof final DyeItem dyeItem && dyeItem.getDyeColor() != dyeColor) { if (!level.isClientSide) { withBlockEntityDo(level, pos, be -> { @@ -149,4 +167,42 @@ public DyeColor getDyeColor() { public List getPossibleDisplayOptions() { return List.of(GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.NONE, GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.DOUBLE_CHAR, GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.DOUBLE_CHAR_DOUBLE_LINES); } + + + @MethodsReturnNonnullByDefault + private static class PlacementHelper implements IPlacementHelper { + @Override + public Predicate getItemPredicate() { + return BnbBlocks.NIXIE_BOARD::isIn; + } + + @Override + public Predicate getStatePredicate() { + return s -> s.getBlock() instanceof NixieBoardBlockNixie; + } + + @Override + public PlacementOffset getOffset(Player player, Level world, BlockState state, BlockPos pos, BlockHitResult ray) { + List directions = IPlacementHelper.orderedByDistanceExceptAxis(pos, ray.getLocation(), + state.getValue(NixieBoardBlockNixie.ORIENTATION).getAxis(), dir -> world.getBlockState(pos.relative(dir)).canBeReplaced()); + + if (directions.isEmpty()) + return PlacementOffset.fail(); + else { + BlockPos newPos = pos.relative(directions.get(0)); + + return PlacementOffset.success(newPos, s -> { + Direction left = DoubleOrientedDirections.getLeft(s); + Direction below = s.getValue(FACING).getOpposite(); + + return s + .setValue(ORIENTATION, state.getValue(ORIENTATION)) + .setValue(LEFT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(left)))) + .setValue(RIGHT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(left.getOpposite())))) + .setValue(BOTTOM, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(below)))) + .setValue(TOP, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(below.getOpposite())))); + }); + } + } + } } diff --git a/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json b/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json index 67e36a3c..2f86ac93 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json @@ -4,7 +4,8 @@ "texture_size": [32, 32], "textures": { "1": "bits_n_bobs:block/lightbulb", - "2": "bits_n_bobs:block/lightbulb_on" + "2": "bits_n_bobs:block/lightbulb_on", + "particle": "bits_n_bobs:block/lightbulb" }, "elements": [ { From 9336210a53ac3c8198988014d7a7854f4f742be4 Mon Sep 17 00:00:00 2001 From: BlazerBo1 <116039257+AstralButOnGitHub@users.noreply.github.com> Date: Sat, 3 Jan 2026 09:19:40 -0600 Subject: [PATCH 2/7] Revert "HeadLamp SneakWrenching, NixieBoard PlacementHelper, Lightbulb Particles." This reverts commit 6e73fda81271d8b7c235449cba3360d77cb39004. --- .../content/light/headlamp/HeadlampBlock.java | 43 +++----------- .../nixie_board/NixieBoardBlockNixie.java | 56 ------------------- .../block/lightbulb/lightbulb_uncaged.json | 3 +- 3 files changed, 9 insertions(+), 93 deletions(-) diff --git a/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java b/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java index 1ce7155e..773e4606 100644 --- a/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java +++ b/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java @@ -1,6 +1,5 @@ package com.kipti.bnb.content.light.headlamp; -import com.kipti.bnb.CreateBitsnBobs; import com.kipti.bnb.content.light.founation.LightBlock; import com.kipti.bnb.registry.BnbBlockEntities; import com.kipti.bnb.registry.BnbBlocks; @@ -9,7 +8,6 @@ import com.simibubi.create.foundation.block.IBE; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; -import net.minecraft.server.level.ServerLevel; import net.minecraft.sounds.SoundSource; import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; @@ -24,7 +22,6 @@ import net.minecraft.world.item.context.UseOnContext; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.Level; -import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Rotation; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.state.BlockState; @@ -36,15 +33,11 @@ import net.minecraft.world.phys.shapes.CollisionContext; import net.minecraft.world.phys.shapes.Shapes; import net.minecraft.world.phys.shapes.VoxelShape; -import net.neoforged.neoforge.common.NeoForge; -import net.neoforged.neoforge.event.level.BlockEvent; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; -import java.util.Arrays; - //TODO SpecialBlockItemRequirement -public class HeadlampBlock extends LightBlock implements IBE, IWrenchable{ +public class HeadlampBlock extends LightBlock implements IBE { public HeadlampBlock(Properties p_52591_) { super(p_52591_, BnbShapes.LIGHTBULB_SHAPE); @@ -175,36 +168,16 @@ protected void onRemove(BlockState state, Level level, BlockPos pos, BlockState @Override public InteractionResult onSneakWrenched(BlockState state, UseOnContext context) { - Level world = context.getLevel(); - BlockPos pos = context.getClickedPos(); - Player player = context.getPlayer(); - HeadlampBlockEntity headlampBlockEntity = (HeadlampBlockEntity) context.getLevel().getBlockEntity(pos); Vec3 location = getPlayerLocationInBlockExact(context.getClickedPos(), context.getLevel(), context.getPlayer()); - - if (!(world instanceof ServerLevel serverLevel)) - return InteractionResult.SUCCESS; - - BlockEvent.BreakEvent event = new BlockEvent.BreakEvent(world, pos, world.getBlockState(pos), player); - NeoForge.EVENT_BUS.post(event); - if (event.isCanceled()) + if (context.getLevel().getBlockEntity(context.getClickedPos()) instanceof HeadlampBlockEntity headlampBlockEntity && + headlampBlockEntity.removeNearestHeadlamp(location.subtract(context.getClickedPos().getCenter()), state.getValue(FACING))) { + if (!context.getLevel().isClientSide && !context.getPlayer().isCreative()) { + context.getPlayer().addItem(BnbBlocks.HEADLAMP.asStack()); + } + IWrenchable.playRemoveSound(context.getLevel(), context.getClickedPos()); return InteractionResult.SUCCESS; - - if (player != null && !player.isCreative()) { - Block.getDrops(state, serverLevel, pos, world.getBlockEntity(pos), player, context.getItemInHand()).forEach(itemStack -> player.getInventory().placeItemBackInInventory(itemStack)); } - - state.spawnAfterBreak(serverLevel, pos, ItemStack.EMPTY, true); - - // middle headlamps is sometimes weird. - if (headlampBlockEntity.getExistingPlacements().toArray().length > 1) { - headlampBlockEntity.removeNearestHeadlamp(location.subtract(context.getClickedPos().getCenter()), state.getValue(FACING)); - } else { - world.destroyBlock(pos, false); - } - - - IWrenchable.playRemoveSound(world, pos); - return InteractionResult.SUCCESS; + return super.onSneakWrenched(state, context); } @Override diff --git a/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java b/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java index 3c3a2357..28889fe6 100644 --- a/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java +++ b/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java @@ -4,20 +4,13 @@ import com.kipti.bnb.registry.BnbBlockEntities; import com.kipti.bnb.registry.BnbBlocks; import com.kipti.bnb.registry.BnbShapes; -import com.simibubi.create.AllBlocks; -import com.simibubi.create.content.contraptions.bearing.SailBlock; import com.simibubi.create.content.equipment.wrench.IWrenchable; import com.simibubi.create.foundation.block.IBE; -import net.createmod.catnip.placement.IPlacementHelper; -import net.createmod.catnip.placement.PlacementHelpers; -import net.createmod.catnip.placement.PlacementOffset; -import net.minecraft.MethodsReturnNonnullByDefault; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.InteractionHand; import net.minecraft.world.ItemInteractionResult; import net.minecraft.world.entity.player.Player; -import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.DyeColor; import net.minecraft.world.item.DyeItem; import net.minecraft.world.item.ItemStack; @@ -39,7 +32,6 @@ import org.jetbrains.annotations.Nullable; import java.util.List; -import java.util.function.Predicate; public class NixieBoardBlockNixie extends GenericNixieDisplayBlock implements IBE, IWrenchable, DyeProviderBlock, IGenericNixieDisplayBlock { @@ -49,7 +41,6 @@ public class NixieBoardBlockNixie extends GenericNixieDisplayBlock implements IB public static final BooleanProperty TOP = BooleanProperty.create("top"); final @Nullable DyeColor dyeColor; - private static final int placementHelperId = PlacementHelpers.register(new PlacementHelper()); public NixieBoardBlockNixie(final Properties p_52591_, @Nullable final DyeColor dyeColor) { super(p_52591_); @@ -107,15 +98,6 @@ protected BlockState updateShape(final BlockState state, final Direction directi @Override protected ItemInteractionResult useItemOn(final ItemStack stack, final BlockState state, final Level level, final BlockPos pos, final Player player, final InteractionHand hand, final BlockHitResult hitResult) { final ItemStack heldItem = player.getItemInHand(hand); - - IPlacementHelper placementHelper = PlacementHelpers.get(placementHelperId); - if (!player.isShiftKeyDown() && player.mayBuild()) { - if (placementHelper.matchesItem(stack)) { - placementHelper.getOffset(player, level, state, pos, hitResult) - .placeInWorld(level, (BlockItem) stack.getItem(), player, hand, hitResult); - return ItemInteractionResult.SUCCESS; - } - } if (heldItem.getItem() instanceof final DyeItem dyeItem && dyeItem.getDyeColor() != dyeColor) { if (!level.isClientSide) { withBlockEntityDo(level, pos, be -> { @@ -167,42 +149,4 @@ public DyeColor getDyeColor() { public List getPossibleDisplayOptions() { return List.of(GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.NONE, GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.DOUBLE_CHAR, GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.DOUBLE_CHAR_DOUBLE_LINES); } - - - @MethodsReturnNonnullByDefault - private static class PlacementHelper implements IPlacementHelper { - @Override - public Predicate getItemPredicate() { - return BnbBlocks.NIXIE_BOARD::isIn; - } - - @Override - public Predicate getStatePredicate() { - return s -> s.getBlock() instanceof NixieBoardBlockNixie; - } - - @Override - public PlacementOffset getOffset(Player player, Level world, BlockState state, BlockPos pos, BlockHitResult ray) { - List directions = IPlacementHelper.orderedByDistanceExceptAxis(pos, ray.getLocation(), - state.getValue(NixieBoardBlockNixie.ORIENTATION).getAxis(), dir -> world.getBlockState(pos.relative(dir)).canBeReplaced()); - - if (directions.isEmpty()) - return PlacementOffset.fail(); - else { - BlockPos newPos = pos.relative(directions.get(0)); - - return PlacementOffset.success(newPos, s -> { - Direction left = DoubleOrientedDirections.getLeft(s); - Direction below = s.getValue(FACING).getOpposite(); - - return s - .setValue(ORIENTATION, state.getValue(ORIENTATION)) - .setValue(LEFT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(left)))) - .setValue(RIGHT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(left.getOpposite())))) - .setValue(BOTTOM, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(below)))) - .setValue(TOP, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(below.getOpposite())))); - }); - } - } - } } diff --git a/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json b/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json index 2f86ac93..67e36a3c 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json @@ -4,8 +4,7 @@ "texture_size": [32, 32], "textures": { "1": "bits_n_bobs:block/lightbulb", - "2": "bits_n_bobs:block/lightbulb_on", - "particle": "bits_n_bobs:block/lightbulb" + "2": "bits_n_bobs:block/lightbulb_on" }, "elements": [ { From 80b635733fcebf50df9bbd803d4e75d7199cafb1 Mon Sep 17 00:00:00 2001 From: Sam M-W Date: Sat, 3 Jan 2026 15:29:12 +0000 Subject: [PATCH 3/7] Reapply "HeadLamp SneakWrenching, NixieBoard PlacementHelper, Lightbulb Particles." This reverts commit 82d14e8958a455c024fabab7536a78e1c458d5d0. --- .../content/light/headlamp/HeadlampBlock.java | 43 +++++++++++--- .../nixie_board/NixieBoardBlockNixie.java | 56 +++++++++++++++++++ .../block/lightbulb/lightbulb_uncaged.json | 3 +- 3 files changed, 93 insertions(+), 9 deletions(-) diff --git a/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java b/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java index 773e4606..1ce7155e 100644 --- a/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java +++ b/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java @@ -1,5 +1,6 @@ package com.kipti.bnb.content.light.headlamp; +import com.kipti.bnb.CreateBitsnBobs; import com.kipti.bnb.content.light.founation.LightBlock; import com.kipti.bnb.registry.BnbBlockEntities; import com.kipti.bnb.registry.BnbBlocks; @@ -8,6 +9,7 @@ import com.simibubi.create.foundation.block.IBE; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; +import net.minecraft.server.level.ServerLevel; import net.minecraft.sounds.SoundSource; import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; @@ -22,6 +24,7 @@ import net.minecraft.world.item.context.UseOnContext; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Rotation; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.state.BlockState; @@ -33,11 +36,15 @@ import net.minecraft.world.phys.shapes.CollisionContext; import net.minecraft.world.phys.shapes.Shapes; import net.minecraft.world.phys.shapes.VoxelShape; +import net.neoforged.neoforge.common.NeoForge; +import net.neoforged.neoforge.event.level.BlockEvent; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; +import java.util.Arrays; + //TODO SpecialBlockItemRequirement -public class HeadlampBlock extends LightBlock implements IBE { +public class HeadlampBlock extends LightBlock implements IBE, IWrenchable{ public HeadlampBlock(Properties p_52591_) { super(p_52591_, BnbShapes.LIGHTBULB_SHAPE); @@ -168,16 +175,36 @@ protected void onRemove(BlockState state, Level level, BlockPos pos, BlockState @Override public InteractionResult onSneakWrenched(BlockState state, UseOnContext context) { + Level world = context.getLevel(); + BlockPos pos = context.getClickedPos(); + Player player = context.getPlayer(); + HeadlampBlockEntity headlampBlockEntity = (HeadlampBlockEntity) context.getLevel().getBlockEntity(pos); Vec3 location = getPlayerLocationInBlockExact(context.getClickedPos(), context.getLevel(), context.getPlayer()); - if (context.getLevel().getBlockEntity(context.getClickedPos()) instanceof HeadlampBlockEntity headlampBlockEntity && - headlampBlockEntity.removeNearestHeadlamp(location.subtract(context.getClickedPos().getCenter()), state.getValue(FACING))) { - if (!context.getLevel().isClientSide && !context.getPlayer().isCreative()) { - context.getPlayer().addItem(BnbBlocks.HEADLAMP.asStack()); - } - IWrenchable.playRemoveSound(context.getLevel(), context.getClickedPos()); + + if (!(world instanceof ServerLevel serverLevel)) return InteractionResult.SUCCESS; + + BlockEvent.BreakEvent event = new BlockEvent.BreakEvent(world, pos, world.getBlockState(pos), player); + NeoForge.EVENT_BUS.post(event); + if (event.isCanceled()) + return InteractionResult.SUCCESS; + + if (player != null && !player.isCreative()) { + Block.getDrops(state, serverLevel, pos, world.getBlockEntity(pos), player, context.getItemInHand()).forEach(itemStack -> player.getInventory().placeItemBackInInventory(itemStack)); } - return super.onSneakWrenched(state, context); + + state.spawnAfterBreak(serverLevel, pos, ItemStack.EMPTY, true); + + // middle headlamps is sometimes weird. + if (headlampBlockEntity.getExistingPlacements().toArray().length > 1) { + headlampBlockEntity.removeNearestHeadlamp(location.subtract(context.getClickedPos().getCenter()), state.getValue(FACING)); + } else { + world.destroyBlock(pos, false); + } + + + IWrenchable.playRemoveSound(world, pos); + return InteractionResult.SUCCESS; } @Override diff --git a/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java b/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java index 28889fe6..3c3a2357 100644 --- a/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java +++ b/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java @@ -4,13 +4,20 @@ import com.kipti.bnb.registry.BnbBlockEntities; import com.kipti.bnb.registry.BnbBlocks; import com.kipti.bnb.registry.BnbShapes; +import com.simibubi.create.AllBlocks; +import com.simibubi.create.content.contraptions.bearing.SailBlock; import com.simibubi.create.content.equipment.wrench.IWrenchable; import com.simibubi.create.foundation.block.IBE; +import net.createmod.catnip.placement.IPlacementHelper; +import net.createmod.catnip.placement.PlacementHelpers; +import net.createmod.catnip.placement.PlacementOffset; +import net.minecraft.MethodsReturnNonnullByDefault; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.InteractionHand; import net.minecraft.world.ItemInteractionResult; import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.DyeColor; import net.minecraft.world.item.DyeItem; import net.minecraft.world.item.ItemStack; @@ -32,6 +39,7 @@ import org.jetbrains.annotations.Nullable; import java.util.List; +import java.util.function.Predicate; public class NixieBoardBlockNixie extends GenericNixieDisplayBlock implements IBE, IWrenchable, DyeProviderBlock, IGenericNixieDisplayBlock { @@ -41,6 +49,7 @@ public class NixieBoardBlockNixie extends GenericNixieDisplayBlock implements IB public static final BooleanProperty TOP = BooleanProperty.create("top"); final @Nullable DyeColor dyeColor; + private static final int placementHelperId = PlacementHelpers.register(new PlacementHelper()); public NixieBoardBlockNixie(final Properties p_52591_, @Nullable final DyeColor dyeColor) { super(p_52591_); @@ -98,6 +107,15 @@ protected BlockState updateShape(final BlockState state, final Direction directi @Override protected ItemInteractionResult useItemOn(final ItemStack stack, final BlockState state, final Level level, final BlockPos pos, final Player player, final InteractionHand hand, final BlockHitResult hitResult) { final ItemStack heldItem = player.getItemInHand(hand); + + IPlacementHelper placementHelper = PlacementHelpers.get(placementHelperId); + if (!player.isShiftKeyDown() && player.mayBuild()) { + if (placementHelper.matchesItem(stack)) { + placementHelper.getOffset(player, level, state, pos, hitResult) + .placeInWorld(level, (BlockItem) stack.getItem(), player, hand, hitResult); + return ItemInteractionResult.SUCCESS; + } + } if (heldItem.getItem() instanceof final DyeItem dyeItem && dyeItem.getDyeColor() != dyeColor) { if (!level.isClientSide) { withBlockEntityDo(level, pos, be -> { @@ -149,4 +167,42 @@ public DyeColor getDyeColor() { public List getPossibleDisplayOptions() { return List.of(GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.NONE, GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.DOUBLE_CHAR, GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.DOUBLE_CHAR_DOUBLE_LINES); } + + + @MethodsReturnNonnullByDefault + private static class PlacementHelper implements IPlacementHelper { + @Override + public Predicate getItemPredicate() { + return BnbBlocks.NIXIE_BOARD::isIn; + } + + @Override + public Predicate getStatePredicate() { + return s -> s.getBlock() instanceof NixieBoardBlockNixie; + } + + @Override + public PlacementOffset getOffset(Player player, Level world, BlockState state, BlockPos pos, BlockHitResult ray) { + List directions = IPlacementHelper.orderedByDistanceExceptAxis(pos, ray.getLocation(), + state.getValue(NixieBoardBlockNixie.ORIENTATION).getAxis(), dir -> world.getBlockState(pos.relative(dir)).canBeReplaced()); + + if (directions.isEmpty()) + return PlacementOffset.fail(); + else { + BlockPos newPos = pos.relative(directions.get(0)); + + return PlacementOffset.success(newPos, s -> { + Direction left = DoubleOrientedDirections.getLeft(s); + Direction below = s.getValue(FACING).getOpposite(); + + return s + .setValue(ORIENTATION, state.getValue(ORIENTATION)) + .setValue(LEFT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(left)))) + .setValue(RIGHT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(left.getOpposite())))) + .setValue(BOTTOM, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(below)))) + .setValue(TOP, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(below.getOpposite())))); + }); + } + } + } } diff --git a/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json b/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json index 67e36a3c..2f86ac93 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/lightbulb/lightbulb_uncaged.json @@ -4,7 +4,8 @@ "texture_size": [32, 32], "textures": { "1": "bits_n_bobs:block/lightbulb", - "2": "bits_n_bobs:block/lightbulb_on" + "2": "bits_n_bobs:block/lightbulb_on", + "particle": "bits_n_bobs:block/lightbulb" }, "elements": [ { From 18b677ba07ebb0c540070b16b0e81cbb1fb24406 Mon Sep 17 00:00:00 2001 From: cake Date: Sat, 3 Jan 2026 19:27:50 +0000 Subject: [PATCH 4/7] Improve nixie handling of dye and resolve review --- .../5049ae3bedad6534d1775911872e86abc07c482d | 70 +- .../blockstates/black_large_nixie_tube.json | 180 +- .../blockstates/black_nixie_board.json | 3472 +++++------------ .../blockstates/blue_large_nixie_tube.json | 180 +- .../blockstates/blue_nixie_board.json | 3472 +++++------------ .../blockstates/brown_large_nixie_tube.json | 180 +- .../blockstates/brown_nixie_board.json | 3472 +++++------------ .../blockstates/cyan_large_nixie_tube.json | 180 +- .../blockstates/cyan_nixie_board.json | 3472 +++++------------ .../blockstates/gray_large_nixie_tube.json | 180 +- .../blockstates/gray_nixie_board.json | 3472 +++++------------ .../blockstates/green_large_nixie_tube.json | 180 +- .../blockstates/green_nixie_board.json | 3472 +++++------------ .../blockstates/large_nixie_tube.json | 180 +- .../light_blue_large_nixie_tube.json | 180 +- .../blockstates/light_blue_nixie_board.json | 3472 +++++------------ .../light_gray_large_nixie_tube.json | 180 +- .../blockstates/light_gray_nixie_board.json | 3472 +++++------------ .../blockstates/lime_large_nixie_tube.json | 180 +- .../blockstates/lime_nixie_board.json | 3472 +++++------------ .../blockstates/magenta_large_nixie_tube.json | 180 +- .../blockstates/magenta_nixie_board.json | 3472 +++++------------ .../bits_n_bobs/blockstates/nixie_board.json | 3472 +++++------------ .../blockstates/orange_large_nixie_tube.json | 180 +- .../blockstates/orange_nixie_board.json | 3472 +++++------------ .../blockstates/pink_large_nixie_tube.json | 180 +- .../blockstates/pink_nixie_board.json | 3472 +++++------------ .../blockstates/purple_large_nixie_tube.json | 180 +- .../blockstates/purple_nixie_board.json | 3472 +++++------------ .../blockstates/red_large_nixie_tube.json | 180 +- .../blockstates/red_nixie_board.json | 3472 +++++------------ .../blockstates/white_large_nixie_tube.json | 180 +- .../blockstates/white_nixie_board.json | 3472 +++++------------ .../blockstates/yellow_large_nixie_tube.json | 180 +- .../blockstates/yellow_nixie_board.json | 3472 +++++------------ .../content/light/headlamp/HeadlampBlock.java | 141 +- .../light/headlamp/HeadlampBlockEntity.java | 2 +- .../foundation/GenericNixieDisplayBlock.java | 66 +- .../LargeNixieTubeBlockNixie.java | 66 +- .../nixie_board/NixieBoardBlockNixie.java | 92 +- .../com/kipti/bnb/registry/BnbBlocks.java | 2 - .../large_nixie_tube/large_nixie_tube.json | 1 + .../block/nixie_board/nixie_board_left.json | 1 + .../nixie_board/nixie_board_left_bottom.json | 1 + .../nixie_board/nixie_board_left_middle.json | 1 + .../nixie_board/nixie_board_left_top.json | 1 + .../block/nixie_board/nixie_board_middle.json | 1 + .../nixie_board_middle_bottom.json | 1 + .../nixie_board_middle_middle.json | 1 + .../nixie_board/nixie_board_middle_top.json | 1 + .../block/nixie_board/nixie_board_right.json | 1 + .../nixie_board/nixie_board_right_bottom.json | 1 + .../nixie_board/nixie_board_right_middle.json | 1 + .../nixie_board/nixie_board_right_top.json | 1 + .../block/nixie_board/nixie_board_single.json | 1 + .../nixie_board_single_bottom.json | 1 + .../nixie_board_single_middle.json | 1 + .../nixie_board/nixie_board_single_top.json | 1 + 58 files changed, 15675 insertions(+), 46865 deletions(-) diff --git a/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d b/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d index bb7c425e..9af68cfd 100644 --- a/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d +++ b/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d @@ -1,4 +1,4 @@ -// 1.21.1 2026-01-01T18:56:15.3830447 Registrate Provider for bits_n_bobs [Registries, Data Maps, Recipes, Advancements, Loot Tables, Tags (enchantments), Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), generic_server_provider, Blockstates, Item models, Lang (en_us/en_ud), generic_client_provider] +// 1.21.1 2026-01-03T18:53:14.8520103 Registrate Provider for bits_n_bobs [Registries, Data Maps, Recipes, Advancements, Loot Tables, Tags (enchantments), Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), generic_server_provider, Blockstates, Item models, Lang (en_us/en_ud), generic_client_provider] 55ef065722d329b3c054797cd63a36d59f1634a8 assets/bits_n_bobs/blockstates/andesite_tiles.json 8810b9385c4f0297369a2d35ef8435b216bae4bb assets/bits_n_bobs/blockstates/andesite_tile_slab.json 67a9c45ad788cd261f7b545e230d1d01bf3fd0d8 assets/bits_n_bobs/blockstates/andesite_tile_stairs.json @@ -8,15 +8,15 @@ b3e14dc856928e0c2bf9078afd67eb5cff585c08 assets/bits_n_bobs/blockstates/asurine_ d8a9b28bb2e5ebf6fcfb440284a273979cb7401b assets/bits_n_bobs/blockstates/asurine_tile_stairs.json 2196634500a839b280528753af8ac8493ecf4982 assets/bits_n_bobs/blockstates/asurine_tile_wall.json 79e5765279cfbaec82ea66c3864cc6454c1a9716 assets/bits_n_bobs/blockstates/black_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/black_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/black_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/black_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/black_nixie_board.json 3f259897c99f047f1a3b4e3337084274c4922cad assets/bits_n_bobs/blockstates/blue_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/blue_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/blue_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/blue_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/blue_nixie_board.json e07cb75a2d97a1f1db6381a7c7c373779143afc8 assets/bits_n_bobs/blockstates/brass_lamp.json fa8a7370a031ae6598bf9152995e34dceec93195 assets/bits_n_bobs/blockstates/brown_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/brown_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/brown_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/brown_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/brown_nixie_board.json cecda21d45a8243a23b12088b3fc31ae22eae23b assets/bits_n_bobs/blockstates/calcite_tiles.json 662b6c23ef124ef40131f84698bc9a603641db2c assets/bits_n_bobs/blockstates/calcite_tile_slab.json 1bb8d03ed73f765c3645b92303da83f053f38fca assets/bits_n_bobs/blockstates/calcite_tile_stairs.json @@ -29,8 +29,8 @@ c0f965a0697e1fc54d90fc711126417640cd3553 assets/bits_n_bobs/blockstates/chain_pu 4f03c81a39083504c35de65f470247b080bf2eab assets/bits_n_bobs/blockstates/crimsite_tile_stairs.json 8f9a036f64fa776ef73f293ccf7c72effd4f0d68 assets/bits_n_bobs/blockstates/crimsite_tile_wall.json 7f52eb3b96890e22b6ac0303073a173158b86a78 assets/bits_n_bobs/blockstates/cyan_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/cyan_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/cyan_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/cyan_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/cyan_nixie_board.json f4a43066bac7dc7606fe3072e9a776054f3394df assets/bits_n_bobs/blockstates/deepslate_tiles.json b98d19fd950bf290fadff471e0961bea1797a405 assets/bits_n_bobs/blockstates/deepslate_tile_slab.json 0dacd8eab43f4a4ba03a0313a2720e42ee42f966 assets/bits_n_bobs/blockstates/deepslate_tile_stairs.json @@ -50,50 +50,50 @@ cf7282424d3ae45c34efcbc0447be669486ef1a5 assets/bits_n_bobs/blockstates/granite_ 864cd7ffebd2d28eacafd5f88885140b3ce8ed50 assets/bits_n_bobs/blockstates/granite_tile_stairs.json 9ae70fbd2aa70c2e6b936310bfe71f64911f222c assets/bits_n_bobs/blockstates/granite_tile_wall.json cb013e2235d64efae761a9e8fc035f11474e7f65 assets/bits_n_bobs/blockstates/gray_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/gray_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/gray_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/gray_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/gray_nixie_board.json 9cc89ff98309e9ab2605b09f8074ae1a60ed9b52 assets/bits_n_bobs/blockstates/green_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/green_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/green_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/green_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/green_nixie_board.json c9918242c23e4e53c30dc1b1444149933848a3e9 assets/bits_n_bobs/blockstates/headlamp.json ccad384accdf505efaba4fd79ed6fe43ef30c67d assets/bits_n_bobs/blockstates/large_cogwheel_chain.json e8136731cacd838e4a712612bb730ec2dc7a41cc assets/bits_n_bobs/blockstates/large_flanged_cogwheel.json e8136731cacd838e4a712612bb730ec2dc7a41cc assets/bits_n_bobs/blockstates/large_flanged_cogwheel_chain.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/large_nixie_tube.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/large_nixie_tube.json 8cbed5c28515cb83f03dd9d53dda918ebfaa8768 assets/bits_n_bobs/blockstates/lightbulb.json 5dedfc5b1ab941f514957a2001a4aa6b477f9e90 assets/bits_n_bobs/blockstates/light_blue_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/light_blue_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/light_blue_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/light_blue_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/light_blue_nixie_board.json ccf703b4fc835d48226c92b0986033a6413a99ff assets/bits_n_bobs/blockstates/light_gray_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/light_gray_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/light_gray_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/light_gray_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/light_gray_nixie_board.json 49782ac9738f1305af200e79539913d680278fe9 assets/bits_n_bobs/blockstates/limestone_tiles.json db674c8c71e6bbb65430ff7747df8713ea53cf4d assets/bits_n_bobs/blockstates/limestone_tile_slab.json f9989a410942e5ffdfab15068d85d5302746442b assets/bits_n_bobs/blockstates/limestone_tile_stairs.json b3331caaf809dd6701540e8a212fb462e9ead78e assets/bits_n_bobs/blockstates/limestone_tile_wall.json 4509d880e18d48ebf4a4a8370480c66a17126358 assets/bits_n_bobs/blockstates/lime_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/lime_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/lime_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/lime_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/lime_nixie_board.json 059151d517f716ded997cf8f5ca2d77f0c7e055d assets/bits_n_bobs/blockstates/magenta_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/magenta_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/magenta_nixie_board.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/magenta_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/magenta_nixie_board.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/nixie_board.json 45a98f19227d1b478ef80c80b7b0a78d3928210e assets/bits_n_bobs/blockstates/ochrum_tiles.json 973764c4de02fe0ec97ac707fe9a12eb77fc8bac assets/bits_n_bobs/blockstates/ochrum_tile_slab.json 14dccbad9bc53035dccc59401f906bac2953f3d0 assets/bits_n_bobs/blockstates/ochrum_tile_stairs.json 6eda2bdbb4295c6736c459cb6b7e1a309cd02de3 assets/bits_n_bobs/blockstates/ochrum_tile_wall.json ddd0882eec3c6c2585d13b4700640a0442bcf8e3 assets/bits_n_bobs/blockstates/orange_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/orange_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/orange_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/orange_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/orange_nixie_board.json 59837e89094da96dde8c48a042b589171a8ded03 assets/bits_n_bobs/blockstates/pink_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/pink_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/pink_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/pink_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/pink_nixie_board.json 68759292cd1541b126c2e14d2fb3e2925ba6b912 assets/bits_n_bobs/blockstates/purple_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/purple_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/purple_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/purple_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/purple_nixie_board.json 0fc7d40d8255395155119172ad8ac9959291dc5b assets/bits_n_bobs/blockstates/red_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/red_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/red_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/red_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/red_nixie_board.json 9adbc657879ad024c13766135250c8f83deba9eb assets/bits_n_bobs/blockstates/scorchia_tiles.json cdbdbfac3923e1270e74ec225b3a594c2bd0319c assets/bits_n_bobs/blockstates/scorchia_tile_slab.json ab281290e813d4444ca848f5d7851bbec97db096 assets/bits_n_bobs/blockstates/scorchia_tile_stairs.json @@ -117,11 +117,11 @@ fc576b4d7f9cd924c8c9970c1a4c6163255cb41f assets/bits_n_bobs/blockstates/weathere 959bf2c7da267e39c791f1677fd7590048e6a3fc assets/bits_n_bobs/blockstates/weathered_metal_girder.json db93f0b6304e85777db8e210ec27877930cd94a5 assets/bits_n_bobs/blockstates/weathered_metal_girder_encased_shaft.json c0190afa39321b2f2c2ef4fc2365954911f2b89b assets/bits_n_bobs/blockstates/white_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/white_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/white_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/white_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/white_nixie_board.json bbb308f65d8082773ca234d880ab5896c2390014 assets/bits_n_bobs/blockstates/yellow_chair.json -c47e4c8876e8e41c49b2566699526098893b2c92 assets/bits_n_bobs/blockstates/yellow_large_nixie_tube.json -472bc201ee93bf45466a99d1bc5fc65874330d22 assets/bits_n_bobs/blockstates/yellow_nixie_board.json +4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/yellow_large_nixie_tube.json +98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/yellow_nixie_board.json 9ce33cf13f515c5a2a8baacaa1378f7a448ce885 assets/bits_n_bobs/lang/en_ud.json eda8148c5dfd6eae0d7808debb878cbea8fc2ae3 assets/bits_n_bobs/lang/en_us.json dd3ce69870709f327e97fc59a8b18e1c5d5b95f8 assets/bits_n_bobs/models/block/andesite_tiles.json diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/black_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/black_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/black_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/black_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/black_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/black_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/black_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/black_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/blue_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/blue_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/blue_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/blue_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/blue_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/blue_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/blue_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/blue_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/brown_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/brown_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/brown_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/brown_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/brown_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/brown_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/brown_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/brown_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/cyan_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/cyan_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/cyan_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/cyan_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/cyan_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/cyan_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/cyan_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/cyan_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/gray_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/gray_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/gray_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/gray_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/gray_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/gray_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/gray_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/gray_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/green_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/green_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/green_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/green_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/green_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/green_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/green_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/green_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/light_blue_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/light_blue_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/light_blue_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/light_blue_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/light_blue_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/light_blue_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/light_blue_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/light_blue_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/light_gray_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/light_gray_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/light_gray_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/light_gray_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/light_gray_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/light_gray_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/light_gray_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/light_gray_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/lime_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/lime_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/lime_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/lime_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/lime_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/lime_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/lime_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/lime_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/magenta_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/magenta_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/magenta_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/magenta_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/magenta_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/magenta_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/magenta_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/magenta_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/orange_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/orange_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/orange_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/orange_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/orange_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/orange_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/orange_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/orange_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/pink_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/pink_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/pink_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/pink_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/pink_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/pink_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/pink_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/pink_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/purple_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/purple_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/purple_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/purple_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/purple_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/purple_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/purple_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/purple_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/red_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/red_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/red_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/red_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/red_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/red_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/red_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/red_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/white_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/white_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/white_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/white_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/white_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/white_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/white_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/white_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/yellow_large_nixie_tube.json b/src/generated/resources/assets/bits_n_bobs/blockstates/yellow_large_nixie_tube.json index fb1d4317..1c3e98d6 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/yellow_large_nixie_tube.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/yellow_large_nixie_tube.json @@ -1,219 +1,111 @@ { "variants": { - "facing=down,lit=false,orientation=down": { + "facing=down,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=east": { + "facing=down,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=north": { + "facing=down,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=south": { + "facing=down,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=up": { + "facing=down,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=false,orientation=west": { + "facing=down,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=down": { + "facing=east,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=east": { + "facing=east,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=north": { + "facing=east,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=south": { + "facing=east,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=up": { + "facing=east,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=down,lit=true,orientation=west": { + "facing=east,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=down": { + "facing=north,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=east": { + "facing=north,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=north": { + "facing=north,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=south": { + "facing=north,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=up": { + "facing=north,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=false,orientation=west": { + "facing=north,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=down": { + "facing=south,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=east": { + "facing=south,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=north": { + "facing=south,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=south": { + "facing=south,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=up": { + "facing=south,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=east,lit=true,orientation=west": { + "facing=south,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=down": { + "facing=up,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=east": { + "facing=up,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=north": { + "facing=up,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=south": { + "facing=up,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=up": { + "facing=up,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=false,orientation=west": { + "facing=up,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=down": { + "facing=west,orientation=down": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=east": { + "facing=west,orientation=east": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=north": { + "facing=west,orientation=north": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=south": { + "facing=west,orientation=south": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=up": { + "facing=west,orientation=up": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" }, - "facing=north,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=south,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=up,lit=true,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=false,orientation=west": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=down": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=east": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=north": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=south": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=up": { - "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" - }, - "facing=west,lit=true,orientation=west": { + "facing=west,orientation=west": { "model": "bits_n_bobs:block/large_nixie_tube/large_nixie_tube" } } diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/yellow_nixie_board.json b/src/generated/resources/assets/bits_n_bobs/blockstates/yellow_nixie_board.json index 25a70ce0..014ef4cf 100644 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/yellow_nixie_board.json +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/yellow_nixie_board.json @@ -1,3459 +1,1731 @@ { "variants": { - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=east,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=east,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=east,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=north,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=false,facing=south,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + }, + "bottom=false,facing=south,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + }, + "bottom=false,facing=south,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + }, + "bottom=false,facing=south,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=south,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" + "bottom=false,facing=up,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=false,facing=up,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + }, + "bottom=false,facing=up,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + }, + "bottom=false,facing=up,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + }, + "bottom=false,facing=west,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left" }, - "bottom=false,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" + "bottom=false,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=false,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=false,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_bottom" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left" - }, - "bottom=false,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" - }, - "bottom=false,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=down,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=down,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=east,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=east,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=north,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=north,left=true,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + "bottom=false,facing=west,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_bottom" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle" }, - "bottom=true,facing=south,left=false,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + "bottom=false,facing=west,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_bottom" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=south,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" - }, - "bottom=true,facing=south,left=true,lit=false,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" - }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=south,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=down,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=up,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=down,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=east,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=north,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=south,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=up,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=false,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=false": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" - }, - "bottom=true,facing=up,left=false,lit=true,orientation=west,right=true,top=true": { - "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" - }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=east,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=north,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=north,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=north,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=up,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=north,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=south,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=south,left=true,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" + }, + "bottom=true,facing=south,left=true,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" + }, + "bottom=true,facing=up,left=false,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" }, - "bottom=true,facing=west,left=false,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=false,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=down,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=east,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=north,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=south,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=up,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=false,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=false": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=false,orientation=west,right=true,top=true": { + "bottom=true,facing=up,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=false": { + "bottom=true,facing=west,left=false,orientation=down,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=down,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=east,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=north,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=south,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=up,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=false,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_single_middle" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=false": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_top" + }, + "bottom=true,facing=west,left=false,orientation=west,right=true,top=true": { + "model": "bits_n_bobs:block/nixie_board/nixie_board_left_middle" + }, + "bottom=true,facing=west,left=true,orientation=down,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=down,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=down,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=east,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=east,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=north,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=north,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=south,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=south,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=up,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=up,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=false,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=false,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_right_middle" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=false": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=false": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_top" }, - "bottom=true,facing=west,left=true,lit=true,orientation=west,right=true,top=true": { + "bottom=true,facing=west,left=true,orientation=west,right=true,top=true": { "model": "bits_n_bobs:block/nixie_board/nixie_board_middle_middle" } } diff --git a/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java b/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java index 1ce7155e..41b52172 100644 --- a/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java +++ b/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlock.java @@ -1,6 +1,5 @@ package com.kipti.bnb.content.light.headlamp; -import com.kipti.bnb.CreateBitsnBobs; import com.kipti.bnb.content.light.founation.LightBlock; import com.kipti.bnb.registry.BnbBlockEntities; import com.kipti.bnb.registry.BnbBlocks; @@ -41,45 +40,44 @@ import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; -import java.util.Arrays; +import java.util.concurrent.atomic.AtomicReference; -//TODO SpecialBlockItemRequirement -public class HeadlampBlock extends LightBlock implements IBE, IWrenchable{ +public class HeadlampBlock extends LightBlock implements IBE, IWrenchable { - public HeadlampBlock(Properties p_52591_) { + public HeadlampBlock(final Properties p_52591_) { super(p_52591_, BnbShapes.LIGHTBULB_SHAPE); } @Override - public void setPlacedBy(Level level, BlockPos pos, BlockState state, @Nullable LivingEntity placer, ItemStack stack) { + public void setPlacedBy(final @NotNull Level level, final @NotNull BlockPos pos, final @NotNull BlockState state, @Nullable final LivingEntity placer, final @NotNull ItemStack stack) { super.setPlacedBy(level, pos, state, placer, stack); if (placer == null) { return; } - Vec3 location = getPlayerLocationInBlock(pos, placer); + final Vec3 location = getPlayerLocationInBlock(pos, placer); withBlockEntityDo(level, pos, (headlampBlockEntity) -> headlampBlockEntity.placeHeadlampIntoBlock( location.subtract(pos.getCenter()), state.getValue(FACING))); } - private static @NotNull Vec3 getPlayerLocationInBlock(BlockPos pos, @NotNull LivingEntity placer) { - double range = placer.getAttributeValue(Attributes.BLOCK_INTERACTION_RANGE) + 1; - HitResult hitResult = placer.pick(range, 1, false); + private static @NotNull Vec3 getPlayerLocationInBlock(final BlockPos pos, @NotNull final LivingEntity placer) { + final double range = placer.getAttributeValue(Attributes.BLOCK_INTERACTION_RANGE) + 1; + final HitResult hitResult = placer.pick(range, 1, false); Vec3 location = hitResult.getLocation(); - Vec3 direction = placer.getLookAngle(); + final Vec3 direction = placer.getLookAngle(); - AABB hitBox = new AABB(pos); + final AABB hitBox = new AABB(pos); location = hitBox.clip(location.add(direction.scale(2)), location).orElse(location); return location; } - private Vec3 getPlayerLocationInBlockExact(BlockPos pos, Level level, @NotNull LivingEntity placer) { - double range = placer.getAttributeValue(Attributes.BLOCK_INTERACTION_RANGE) + 1; - HitResult hitResult = placer.pick(range, 1, false); - Vec3 location = hitResult.getLocation(); - Vec3 direction = placer.getLookAngle(); + private Vec3 getPlayerLocationInBlockExact(final BlockPos pos, final Level level, @NotNull final LivingEntity placer) { + final double range = placer.getAttributeValue(Attributes.BLOCK_INTERACTION_RANGE) + 1; + final HitResult hitResult = placer.pick(range, 1, false); + final Vec3 location = hitResult.getLocation(); + final Vec3 direction = placer.getLookAngle(); - BlockHitResult clip = level.getBlockState(pos).getShape(level, pos).clip(location, direction.scale(2), pos); + final BlockHitResult clip = level.getBlockState(pos).getShape(level, pos).clip(location, direction.scale(2), pos); if (clip == null) { return location; } @@ -88,51 +86,55 @@ private Vec3 getPlayerLocationInBlockExact(BlockPos pos, Level level, @NotNull L } @Override - public boolean canBeReplaced(BlockState state, BlockPlaceContext useContext) { + public boolean canBeReplaced(final @NotNull BlockState state, final BlockPlaceContext useContext) { if (useContext.isSecondaryUseActive()) return false; - ItemStack stack = useContext.getItemInHand(); - if (stack.getItem() instanceof BlockItem blockItem && blockItem.getBlock() != this) + final ItemStack stack = useContext.getItemInHand(); + if (stack.getItem() instanceof final BlockItem blockItem && blockItem.getBlock() != this) return super.canBeReplaced(state, useContext); - Vec3 location = useContext.getClickLocation(); + final Vec3 location = useContext.getClickLocation(); - BlockPos pos = useContext.getClickedPos(); - if (useContext.getLevel().getBlockEntity(pos) instanceof HeadlampBlockEntity headlampBlockEntity) { + final BlockPos pos = useContext.getClickedPos(); + if (useContext.getLevel().getBlockEntity(pos) instanceof final HeadlampBlockEntity headlampBlockEntity) { return headlampBlockEntity.canPlaceHeadlampIntoBlock(location.subtract(pos.getCenter()), state.getValue(FACING)); } return super.canBeReplaced(state, useContext); } @Override - public BlockState getStateForPlacement(@NotNull BlockPlaceContext pContext) { - BlockState stateForPlacement = super.getStateForPlacement(pContext); - if (stateForPlacement == null) + public @Nullable BlockState getStateForPlacement(@NotNull final BlockPlaceContext pContext) { + AtomicReference stateForPlacement = new AtomicReference<>(super.getStateForPlacement(pContext)); + if (stateForPlacement.get() == null) return null; - Level level = pContext.getLevel(); - BlockPos pos = pContext.getClickedPos(); - BlockState blockState = level.getBlockState(pos); - HeadlampBlockEntity fpbe = getBlockEntity(level, pos); + final Level level = pContext.getLevel(); + final BlockPos pos = pContext.getClickedPos(); + final BlockState blockState = level.getBlockState(pos); + final HeadlampBlockEntity fpbe = getBlockEntity(level, pos); - Vec3 location = pContext.getClickLocation().subtract(pos.getCenter()); - Direction facing = stateForPlacement.getValue(FACING); + final Vec3 location = pContext.getClickLocation().subtract(pos.getCenter()); + final Direction facing = stateForPlacement.get().getValue(FACING); - if (blockState.is(this) && location != null && fpbe != null) { + if (blockState.is(this) && fpbe != null) { if (!level.isClientSide()) { - Vec3 finalLocation = location; - withBlockEntityDo(level, pos, (headlampBlockEntity) -> headlampBlockEntity - .placeHeadlampIntoBlock(finalLocation, facing)); + withBlockEntityDo(level, pos, (headlampBlockEntity) -> { + final boolean placed = headlampBlockEntity + .placeHeadlampIntoBlock(location, facing); + if (!placed) { + stateForPlacement.set(null); + } + }); level.playSound(null, pos, soundType.getPlaceSound(), SoundSource.BLOCKS); } - stateForPlacement = blockState; + stateForPlacement.set(blockState); } - return stateForPlacement; + return stateForPlacement.get(); } @Override - protected ItemInteractionResult useItemOn(ItemStack stack, BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, BlockHitResult hitResult) { - if (stack.getItem() instanceof DyeItem dyeItem) { - if (level.getBlockEntity(pos) instanceof HeadlampBlockEntity headlampBlockEntity) { + protected @NotNull ItemInteractionResult useItemOn(final ItemStack stack, final @NotNull BlockState state, final @NotNull Level level, final @NotNull BlockPos pos, final @NotNull Player player, final @NotNull InteractionHand hand, final @NotNull BlockHitResult hitResult) { + if (stack.getItem() instanceof final DyeItem dyeItem) { + if (level.getBlockEntity(pos) instanceof final HeadlampBlockEntity headlampBlockEntity) { headlampBlockEntity.placeDyeColorIntoBlock( dyeItem.getDyeColor(), hitResult.getLocation().subtract(pos.getCenter()), @@ -147,9 +149,9 @@ protected ItemInteractionResult useItemOn(ItemStack stack, BlockState state, Lev @Override - public boolean onDestroyedByPlayer(BlockState state, Level level, BlockPos pos, Player player, boolean willHarvest, FluidState fluid) { - Vec3 location = getPlayerLocationInBlockExact(pos, level, player); - if (!player.isCrouching() && level.getBlockEntity(pos) instanceof HeadlampBlockEntity headlampBlockEntity && + public boolean onDestroyedByPlayer(final @NotNull BlockState state, final @NotNull Level level, final @NotNull BlockPos pos, final @NotNull Player player, final boolean willHarvest, final @NotNull FluidState fluid) { + final Vec3 location = getPlayerLocationInBlockExact(pos, level, player); + if (!player.isCrouching() && level.getBlockEntity(pos) instanceof final HeadlampBlockEntity headlampBlockEntity && headlampBlockEntity.removeNearestHeadlamp(location.subtract(pos.getCenter()), state.getValue(FACING))) { if (!level.isClientSide && !player.isCreative()) { HeadlampBlock.popResource(level, pos, BnbBlocks.HEADLAMP.asStack()); @@ -160,13 +162,13 @@ public boolean onDestroyedByPlayer(BlockState state, Level level, BlockPos pos, } @Override - protected void onRemove(BlockState state, Level level, BlockPos pos, BlockState newState, boolean movedByPiston) { - if (newState != null && newState.is(state.getBlock())) { + protected void onRemove(final BlockState state, final @NotNull Level level, final @NotNull BlockPos pos, final BlockState newState, final boolean movedByPiston) { + if (newState.is(state.getBlock())) { super.onRemove(state, level, pos, newState, movedByPiston); return; // Block is being replaced by the same block, do nothing } - if (level.getBlockEntity(pos) instanceof HeadlampBlockEntity headlampBlockEntity) { - ItemStack additionalResources = BnbBlocks.HEADLAMP.asStack().copyWithCount(Math.clamp(headlampBlockEntity.getExistingPlacements().size() - 1, 0, 3)); + if (level.getBlockEntity(pos) instanceof final HeadlampBlockEntity headlampBlockEntity) { + final ItemStack additionalResources = BnbBlocks.HEADLAMP.asStack().copyWithCount(Math.clamp(headlampBlockEntity.getExistingPlacements().size() - 1, 0, 3)); if (!additionalResources.isEmpty()) HeadlampBlock.popResource(level, pos, additionalResources); } @@ -174,48 +176,47 @@ protected void onRemove(BlockState state, Level level, BlockPos pos, BlockState } @Override - public InteractionResult onSneakWrenched(BlockState state, UseOnContext context) { - Level world = context.getLevel(); - BlockPos pos = context.getClickedPos(); - Player player = context.getPlayer(); - HeadlampBlockEntity headlampBlockEntity = (HeadlampBlockEntity) context.getLevel().getBlockEntity(pos); - Vec3 location = getPlayerLocationInBlockExact(context.getClickedPos(), context.getLevel(), context.getPlayer()); - - if (!(world instanceof ServerLevel serverLevel)) + public InteractionResult onSneakWrenched(final BlockState state, final UseOnContext context) { + final Level world = context.getLevel(); + final BlockPos pos = context.getClickedPos(); + final Player player = context.getPlayer(); + final Vec3 location = getPlayerLocationInBlockExact(context.getClickedPos(), context.getLevel(), context.getPlayer()); + + if (!(world instanceof final ServerLevel serverLevel)) return InteractionResult.SUCCESS; - BlockEvent.BreakEvent event = new BlockEvent.BreakEvent(world, pos, world.getBlockState(pos), player); + final BlockEvent.BreakEvent event = new BlockEvent.BreakEvent(world, pos, world.getBlockState(pos), player); NeoForge.EVENT_BUS.post(event); if (event.isCanceled()) return InteractionResult.SUCCESS; - if (player != null && !player.isCreative()) { + if (!player.isCreative()) { Block.getDrops(state, serverLevel, pos, world.getBlockEntity(pos), player, context.getItemInHand()).forEach(itemStack -> player.getInventory().placeItemBackInInventory(itemStack)); } state.spawnAfterBreak(serverLevel, pos, ItemStack.EMPTY, true); - // middle headlamps is sometimes weird. - if (headlampBlockEntity.getExistingPlacements().toArray().length > 1) { - headlampBlockEntity.removeNearestHeadlamp(location.subtract(context.getClickedPos().getCenter()), state.getValue(FACING)); - } else { - world.destroyBlock(pos, false); - } - + withBlockEntityDo(world, pos, (headlampBlockEntity) -> { + if (headlampBlockEntity.getExistingPlacements().size() > 1) { + headlampBlockEntity.removeNearestHeadlamp(location.subtract(context.getClickedPos().getCenter()), state.getValue(FACING)); + } else { + world.destroyBlock(pos, false); + } + }); IWrenchable.playRemoveSound(world, pos); return InteractionResult.SUCCESS; } @Override - protected @NotNull VoxelShape getShape(BlockState state, @NotNull BlockGetter level, @NotNull BlockPos pos, @NotNull CollisionContext context) { - return level.getBlockEntity(pos) instanceof HeadlampBlockEntity headlampBlockEntity ? + protected @NotNull VoxelShape getShape(final BlockState state, @NotNull final BlockGetter level, @NotNull final BlockPos pos, @NotNull final CollisionContext context) { + return level.getBlockEntity(pos) instanceof final HeadlampBlockEntity headlampBlockEntity ? headlampBlockEntity.getShape(state, level, pos, context) : Shapes.block(); } @Override - protected BlockState rotate(BlockState state, Rotation rotation) { + protected @NotNull BlockState rotate(final @NotNull BlockState state, final @NotNull Rotation rotation) { return super.rotate(state, rotation) .setValue(FACING, rotation.rotate(state.getValue(FACING))); } @@ -236,7 +237,7 @@ public BlockEntityType getBlockEntityType() { } @Override - protected VoxelShape getVisualShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) { + protected @NotNull VoxelShape getVisualShape(final @NotNull BlockState state, final @NotNull BlockGetter level, final @NotNull BlockPos pos, final @NotNull CollisionContext context) { return super.getVisualShape(state, level, pos, context); } } diff --git a/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlockEntity.java b/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlockEntity.java index 18af6039..01b4e3b7 100644 --- a/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlockEntity.java +++ b/src/main/java/com/kipti/bnb/content/light/headlamp/HeadlampBlockEntity.java @@ -28,7 +28,7 @@ public class HeadlampBlockEntity extends SmartBlockEntity implements SpecialBlockEntityItemRequirement { - int[] activePlacements = new int[9]; + private final int[] activePlacements = new int[9]; public HeadlampBlockEntity(final BlockEntityType type, final BlockPos pos, final BlockState state) { super(type, pos, state); diff --git a/src/main/java/com/kipti/bnb/content/nixie/foundation/GenericNixieDisplayBlock.java b/src/main/java/com/kipti/bnb/content/nixie/foundation/GenericNixieDisplayBlock.java index 35e1a4a8..87aea4c1 100644 --- a/src/main/java/com/kipti/bnb/content/nixie/foundation/GenericNixieDisplayBlock.java +++ b/src/main/java/com/kipti/bnb/content/nixie/foundation/GenericNixieDisplayBlock.java @@ -7,6 +7,7 @@ import com.simibubi.create.AllBlocks; import com.simibubi.create.content.equipment.clipboard.ClipboardEntry; import com.simibubi.create.content.equipment.wrench.IWrenchable; +import com.simibubi.create.foundation.utility.BlockHelper; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.core.component.DataComponents; @@ -26,10 +27,10 @@ import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.block.state.properties.DirectionProperty; import net.minecraft.world.phys.BlockHitResult; import net.minecraft.world.phys.Vec3; +import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import org.joml.Matrix4f; import org.joml.Vector4f; @@ -47,17 +48,16 @@ public class GenericNixieDisplayBlock extends DirectionalBlock implements IWrenc public static final MapCodec CODEC = simpleCodec(GenericNixieDisplayBlock::new); public static final DirectionProperty ORIENTATION = DirectionProperty.create("orientation"); - public static final BooleanProperty LIT = BooleanProperty.create("lit"); public GenericNixieDisplayBlock(final Properties p_52591_) { super(p_52591_); - registerDefaultState(defaultBlockState().setValue(FACING, Direction.UP).setValue(ORIENTATION, Direction.NORTH).setValue(LIT, false)); + registerDefaultState(defaultBlockState().setValue(FACING, Direction.UP).setValue(ORIENTATION, Direction.NORTH)); } @Override - protected void createBlockStateDefinition(final StateDefinition.Builder builder) { + protected void createBlockStateDefinition(final @NotNull StateDefinition.Builder builder) { super.createBlockStateDefinition(builder); - builder.add(FACING, ORIENTATION, LIT); + builder.add(FACING, ORIENTATION); } @Override @@ -103,14 +103,33 @@ public InteractionResult onWrenched(final BlockState state, final UseOnContext c } @Override - protected ItemInteractionResult useItemOn(final ItemStack stack, final BlockState state, final Level level, final BlockPos pos, final Player player, final InteractionHand hand, final BlockHitResult hitResult) { + protected @NotNull ItemInteractionResult useItemOn(final ItemStack stack, + final @NotNull BlockState state, + final @NotNull Level level, + final @NotNull BlockPos pos, + final @NotNull Player player, + final @NotNull InteractionHand hand, + final @NotNull BlockHitResult hitResult) { final boolean display = stack.getItem() == Items.NAME_TAG && stack.has(DataComponents.CUSTOM_NAME) || AllBlocks.CLIPBOARD.isIn(stack); final DyeColor dye = DyeColor.getColor(stack); - if (!display && dye == null || (!(level.getBlockEntity(pos) instanceof GenericNixieDisplayBlockEntity startBlockEntity))) + if (!display && dye == null || (!(level.getBlockEntity(pos) instanceof final GenericNixieDisplayBlockEntity startBlockEntity))) return ItemInteractionResult.PASS_TO_DEFAULT_BLOCK_INTERACTION; + if (dye != null) { + GenericNixieDisplayTarget.walkNixies(level, pos, (currentPos, consumedCharsOnRow, initialBE) -> { + final BlockState coloredState = withColor(initialBE.getBlockState(), dye); + level.setBlock(currentPos, coloredState, 3); + + final BlockEntity be = level.getBlockEntity(currentPos); + if (be instanceof final GenericNixieDisplayBlockEntity currentBe) { + currentBe.inheritDataFrom(initialBE); + } + }); + return ItemInteractionResult.SUCCESS; + } + Component component = stack.getOrDefault(DataComponents.CUSTOM_NAME, Component.empty()); @Nullable Component secondRowComponent = null; @@ -136,18 +155,15 @@ protected ItemInteractionResult useItemOn(final ItemStack stack, final BlockStat final GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions currentDisplay = startBlockEntity.getCurrentDisplayOption(); GenericNixieDisplayTarget.walkNixies(level, pos, (currentPos, consumedCharsOnRow, blockEntity) -> { - if (display) - if (blockEntity instanceof final GenericNixieDisplayBlockEntity displayBlockEntity) { - if (displayBlockEntity.getCurrentDisplayOption() != currentDisplay && displayBlockEntity.getPossibleDisplayOptions().contains(currentDisplay)) { - displayBlockEntity.setDisplayOption(currentDisplay); - } - - displayBlockEntity.displayCustomText(tagUsed, consumedCharsOnRow, startLine); - if (secondRowTagUsed != null && startLine == 0) - displayBlockEntity.displayCustomText(secondRowTagUsed, consumedCharsOnRow, 1); + if (blockEntity instanceof final GenericNixieDisplayBlockEntity displayBlockEntity) { + if (displayBlockEntity.getCurrentDisplayOption() != currentDisplay && displayBlockEntity.getPossibleDisplayOptions().contains(currentDisplay)) { + displayBlockEntity.setDisplayOption(currentDisplay); } - if (dye != null) - level.setBlockAndUpdate(currentPos, withColor(state, dye)); + + displayBlockEntity.displayCustomText(tagUsed, consumedCharsOnRow, startLine); + if (secondRowTagUsed != null) + displayBlockEntity.displayCustomText(secondRowTagUsed, consumedCharsOnRow, 1); + } }); return ItemInteractionResult.SUCCESS; @@ -156,16 +172,10 @@ protected ItemInteractionResult useItemOn(final ItemStack stack, final BlockStat private static BlockState withColor(final BlockState state, final DyeColor color) { if (isLargeNixieTube(state.getBlock())) { final Block block = color == null ? BnbBlocks.LARGE_NIXIE_TUBE.get() : BnbBlocks.DYED_LARGE_NIXIE_TUBE.get(color).get(); - return block.defaultBlockState() - .setValue(FACING, state.getValue(FACING)) - .setValue(ORIENTATION, state.getValue(ORIENTATION)) - .setValue(LIT, state.getValue(LIT)); + return BlockHelper.copyProperties(state, block.defaultBlockState()); } else if (isNixieBoard(state.getBlock())) { final Block block = color == null ? BnbBlocks.NIXIE_BOARD.get() : BnbBlocks.DYED_NIXIE_BOARD.get(color).get(); - return block.defaultBlockState() - .setValue(FACING, state.getValue(FACING)) - .setValue(ORIENTATION, state.getValue(ORIENTATION)) - .setValue(LIT, state.getValue(LIT)); + return BlockHelper.copyProperties(state, block.defaultBlockState()); } return state; } @@ -178,7 +188,7 @@ public static boolean isNixieBoard(final Block block) { return BnbBlocks.DYED_NIXIE_BOARD.contains(block) || BnbBlocks.NIXIE_BOARD.is(block); } - private int getLineForPlacement(final BlockState state, final BlockPos blockPos, final BlockHitResult hitResult, final Level level) { //TODO: reimplement + private int getLineForPlacement(final BlockState state, final BlockPos blockPos, final BlockHitResult hitResult, final Level level) { if (!(state.getBlock() instanceof NixieBoardBlockNixie)) { return 0; // Nixie tubes always place on the first line } @@ -201,7 +211,7 @@ private int getLineForPlacement(final BlockState state, final BlockPos blockPos, } @Override - protected MapCodec codec() { + protected @NotNull MapCodec codec() { return CODEC; } diff --git a/src/main/java/com/kipti/bnb/content/nixie/large_nixie_tube/LargeNixieTubeBlockNixie.java b/src/main/java/com/kipti/bnb/content/nixie/large_nixie_tube/LargeNixieTubeBlockNixie.java index 4e00eeca..8bb3f113 100644 --- a/src/main/java/com/kipti/bnb/content/nixie/large_nixie_tube/LargeNixieTubeBlockNixie.java +++ b/src/main/java/com/kipti/bnb/content/nixie/large_nixie_tube/LargeNixieTubeBlockNixie.java @@ -6,13 +6,17 @@ import com.kipti.bnb.registry.BnbShapes; import com.simibubi.create.content.equipment.wrench.IWrenchable; import com.simibubi.create.foundation.block.IBE; +import net.createmod.catnip.placement.IPlacementHelper; +import net.createmod.catnip.placement.PlacementHelpers; +import net.createmod.catnip.placement.PlacementOffset; +import net.minecraft.MethodsReturnNonnullByDefault; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.InteractionHand; import net.minecraft.world.ItemInteractionResult; import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.DyeColor; -import net.minecraft.world.item.DyeItem; import net.minecraft.world.item.ItemStack; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.Level; @@ -23,13 +27,16 @@ import net.minecraft.world.phys.HitResult; import net.minecraft.world.phys.shapes.CollisionContext; import net.minecraft.world.phys.shapes.VoxelShape; +import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.List; +import java.util.function.Predicate; public class LargeNixieTubeBlockNixie extends GenericNixieDisplayBlock implements IBE, IWrenchable, IGenericNixieDisplayBlock, DyeProviderBlock { - final @Nullable DyeColor dyeColor; + private final @Nullable DyeColor dyeColor; + private static final int placementHelperId = PlacementHelpers.register(new PlacementHelper()); public LargeNixieTubeBlockNixie(final Properties p_52591_, @Nullable final DyeColor dyeColor) { super(p_52591_); @@ -37,34 +44,26 @@ public LargeNixieTubeBlockNixie(final Properties p_52591_, @Nullable final DyeCo } @Override - public ItemStack getCloneItemStack(final BlockState state, final HitResult target, final LevelReader level, final BlockPos pos, final Player player) { + public @NotNull ItemStack getCloneItemStack(final @NotNull BlockState state, final @NotNull HitResult target, final @NotNull LevelReader level, final @NotNull BlockPos pos, final @NotNull Player player) { return BnbBlocks.LARGE_NIXIE_TUBE.asItem().getDefaultInstance(); } @Override - protected ItemInteractionResult useItemOn(final ItemStack stack, final BlockState state, final Level level, final BlockPos pos, final Player player, final InteractionHand hand, final BlockHitResult hitResult) { - final ItemStack heldItem = player.getItemInHand(hand); - if (heldItem.getItem() instanceof final DyeItem dyeItem && dyeItem.getDyeColor() != dyeColor) { - if (!level.isClientSide) { - final GenericNixieDisplayBlockEntity be = (GenericNixieDisplayBlockEntity) level.getBlockEntity(pos); - be.applyToEachElementOfThisStructure((display) -> { - final DyeColor newColor = dyeItem.getDyeColor(); - final BlockState newState = BnbBlocks.DYED_LARGE_NIXIE_TUBE.get(newColor).getDefaultState() - .setValue(FACING, display.getBlockState().getValue(FACING)) - .setValue(ORIENTATION, display.getBlockState().getValue(ORIENTATION)) - .setValue(LIT, display.getBlockState().getValue(LIT)); - level.setBlockAndUpdate(display.getBlockPos(), newState); - final GenericNixieDisplayBlockEntity newBe = (GenericNixieDisplayBlockEntity) level.getBlockEntity(display.getBlockPos()); - newBe.inheritDataFrom(display); - }); + protected @NotNull ItemInteractionResult useItemOn(final ItemStack stack, final @NotNull BlockState state, final @NotNull Level level, final @NotNull BlockPos pos, final @NotNull Player player, final @NotNull InteractionHand hand, final @NotNull BlockHitResult hitResult) { + final IPlacementHelper placementHelper = PlacementHelpers.get(placementHelperId); + if (!player.isShiftKeyDown() && player.mayBuild()) { + if (placementHelper.matchesItem(stack)) { + placementHelper.getOffset(player, level, state, pos, hitResult) + .placeInWorld(level, (BlockItem) stack.getItem(), player, hand, hitResult); + return ItemInteractionResult.SUCCESS; } - return ItemInteractionResult.SUCCESS; } + return super.useItemOn(stack, state, level, pos, player, hand, hitResult); } @Override - protected VoxelShape getShape(final BlockState state, final BlockGetter level, final BlockPos pos, final CollisionContext context) { + protected @NotNull VoxelShape getShape(final BlockState state, final @NotNull BlockGetter level, final @NotNull BlockPos pos, final @NotNull CollisionContext context) { final Direction frontTarget = DoubleOrientedDirections.getFront(state.getValue(FACING), state.getValue(ORIENTATION)); final boolean isFront = frontTarget.getAxis() == state.getValue(ORIENTATION).getAxis(); return isFront ? BnbShapes.LARGE_NIXIE_TUBE_SIDE.get(state.getValue(FACING)) @@ -89,4 +88,31 @@ public List getPossib return List.of(GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.NONE, GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.ALWAYS_UP); } + @MethodsReturnNonnullByDefault + private static class PlacementHelper implements IPlacementHelper { + @Override + public Predicate getItemPredicate() { + return BnbBlocks.LARGE_NIXIE_TUBE::isIn; + } + + @Override + public Predicate getStatePredicate() { + return s -> s.getBlock() instanceof LargeNixieTubeBlockNixie; + } + + @Override + public PlacementOffset getOffset(@NotNull final Player player, @NotNull final Level world, final BlockState state, @NotNull final BlockPos pos, final BlockHitResult ray) { + final List directions = IPlacementHelper.orderedByDistanceOnlyAxis(pos, ray.getLocation(), + DoubleOrientedDirections.getLeft(state.getValue(LargeNixieTubeBlockNixie.ORIENTATION), state.getValue(LargeNixieTubeBlockNixie.FACING)).getAxis(), dir -> world.getBlockState(pos.relative(dir)).canBeReplaced()); + + if (directions.isEmpty()) { + return PlacementOffset.fail(); + } else { + final BlockPos newPos = pos.relative(directions.getFirst()); + + return PlacementOffset.success(newPos, sourceState -> state); + } + } + } + } diff --git a/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java b/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java index 3c3a2357..78b59473 100644 --- a/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java +++ b/src/main/java/com/kipti/bnb/content/nixie/nixie_board/NixieBoardBlockNixie.java @@ -4,8 +4,6 @@ import com.kipti.bnb.registry.BnbBlockEntities; import com.kipti.bnb.registry.BnbBlocks; import com.kipti.bnb.registry.BnbShapes; -import com.simibubi.create.AllBlocks; -import com.simibubi.create.content.contraptions.bearing.SailBlock; import com.simibubi.create.content.equipment.wrench.IWrenchable; import com.simibubi.create.foundation.block.IBE; import net.createmod.catnip.placement.IPlacementHelper; @@ -19,7 +17,6 @@ import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.DyeColor; -import net.minecraft.world.item.DyeItem; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.context.BlockPlaceContext; import net.minecraft.world.level.BlockGetter; @@ -48,7 +45,7 @@ public class NixieBoardBlockNixie extends GenericNixieDisplayBlock implements IB public static final BooleanProperty BOTTOM = BooleanProperty.create("bottom"); public static final BooleanProperty TOP = BooleanProperty.create("top"); - final @Nullable DyeColor dyeColor; + private final @Nullable DyeColor dyeColor; private static final int placementHelperId = PlacementHelpers.register(new PlacementHelper()); public NixieBoardBlockNixie(final Properties p_52591_, @Nullable final DyeColor dyeColor) { @@ -57,36 +54,27 @@ public NixieBoardBlockNixie(final Properties p_52591_, @Nullable final DyeColor } @Override - public ItemStack getCloneItemStack(final BlockState state, final HitResult target, final LevelReader level, final BlockPos pos, final Player player) { + public @NotNull ItemStack getCloneItemStack(final @NotNull BlockState state, final @NotNull HitResult target, final @NotNull LevelReader level, final @NotNull BlockPos pos, final @NotNull Player player) { return BnbBlocks.NIXIE_BOARD.asItem().getDefaultInstance(); } @Override public @Nullable BlockState getStateForPlacement(final BlockPlaceContext context) { - BlockState state = super.getStateForPlacement(context); + final BlockState state = super.getStateForPlacement(context); if (state == null) { return null; } - final Direction left = DoubleOrientedDirections.getLeft(state); - final Direction below = state.getValue(FACING).getOpposite(); - - state = state - .setValue(LEFT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(state, context.getLevel().getBlockState(context.getClickedPos().relative(left)))) - .setValue(RIGHT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(state, context.getLevel().getBlockState(context.getClickedPos().relative(left.getOpposite())))) - .setValue(BOTTOM, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(state, context.getLevel().getBlockState(context.getClickedPos().relative(below)))) - .setValue(TOP, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(state, context.getLevel().getBlockState(context.getClickedPos().relative(below.getOpposite())))) - .setValue(LIT, false); - return state; + return getConnectedState(context.getLevel(), state, state.getValue(ORIENTATION), state.getValue(FACING), context.getClickedPos()); } @Override - protected void createBlockStateDefinition(final StateDefinition.Builder builder) { + protected void createBlockStateDefinition(final StateDefinition.@NotNull Builder builder) { super.createBlockStateDefinition(builder); builder.add(LEFT, RIGHT, BOTTOM, TOP); } @Override - protected BlockState updateShape(final BlockState state, final Direction direction, final BlockState neighborState, final LevelAccessor level, final BlockPos pos, final BlockPos neighborPos) { + protected @NotNull BlockState updateShape(final @NotNull BlockState state, final @NotNull Direction direction, final @NotNull BlockState neighborState, final @NotNull LevelAccessor level, final @NotNull BlockPos pos, final @NotNull BlockPos neighborPos) { final Direction left = DoubleOrientedDirections.getLeft(state); final Direction right = left.getOpposite(); final Direction bottom = state.getValue(FACING).getOpposite(); @@ -105,10 +93,10 @@ protected BlockState updateShape(final BlockState state, final Direction directi } @Override - protected ItemInteractionResult useItemOn(final ItemStack stack, final BlockState state, final Level level, final BlockPos pos, final Player player, final InteractionHand hand, final BlockHitResult hitResult) { + protected @NotNull ItemInteractionResult useItemOn(final ItemStack stack, final @NotNull BlockState state, final @NotNull Level level, final @NotNull BlockPos pos, final @NotNull Player player, final @NotNull InteractionHand hand, final @NotNull BlockHitResult hitResult) { final ItemStack heldItem = player.getItemInHand(hand); - IPlacementHelper placementHelper = PlacementHelpers.get(placementHelperId); + final IPlacementHelper placementHelper = PlacementHelpers.get(placementHelperId); if (!player.isShiftKeyDown() && player.mayBuild()) { if (placementHelper.matchesItem(stack)) { placementHelper.getOffset(player, level, state, pos, hitResult) @@ -116,33 +104,12 @@ protected ItemInteractionResult useItemOn(final ItemStack stack, final BlockStat return ItemInteractionResult.SUCCESS; } } - if (heldItem.getItem() instanceof final DyeItem dyeItem && dyeItem.getDyeColor() != dyeColor) { - if (!level.isClientSide) { - withBlockEntityDo(level, pos, be -> { - be.applyToEachElementOfThisStructure((display) -> { - final DyeColor newColor = dyeItem.getDyeColor(); - final BlockState newState = BnbBlocks.DYED_NIXIE_BOARD.get(newColor).getDefaultState() - .setValue(FACING, display.getBlockState().getValue(FACING)) - .setValue(ORIENTATION, display.getBlockState().getValue(ORIENTATION)) - .setValue(LEFT, display.getBlockState().getValue(LEFT)) - .setValue(RIGHT, display.getBlockState().getValue(RIGHT)) - .setValue(BOTTOM, display.getBlockState().getValue(BOTTOM)) - .setValue(TOP, display.getBlockState().getValue(TOP)) - .setValue(LIT, display.getBlockState().getValue(LIT)); - level.setBlockAndUpdate(display.getBlockPos(), newState); - final GenericNixieDisplayBlockEntity newBe = (GenericNixieDisplayBlockEntity) level.getBlockEntity(display.getBlockPos()); - if (newBe == null) return; - newBe.inheritDataFrom(display); - }); - }); - } - return ItemInteractionResult.SUCCESS; - } + return super.useItemOn(stack, state, level, pos, player, hand, hitResult); } @Override - protected @NotNull VoxelShape getShape(final BlockState state, final BlockGetter level, final BlockPos pos, final CollisionContext context) { + protected @NotNull VoxelShape getShape(final BlockState state, final @NotNull BlockGetter level, final @NotNull BlockPos pos, final @NotNull CollisionContext context) { final Direction frontTarget = DoubleOrientedDirections.getFront(state.getValue(FACING), state.getValue(ORIENTATION)); final boolean isFront = frontTarget.getAxis() == state.getValue(ORIENTATION).getAxis(); return isFront ? BnbShapes.NIXIE_BOARD_SIDE.get(state.getValue(FACING)) @@ -168,7 +135,6 @@ public List getPossib return List.of(GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.NONE, GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.DOUBLE_CHAR, GenericNixieDisplayBlockEntity.ConfigurableDisplayOptions.DOUBLE_CHAR_DOUBLE_LINES); } - @MethodsReturnNonnullByDefault private static class PlacementHelper implements IPlacementHelper { @Override @@ -182,27 +148,31 @@ public Predicate getStatePredicate() { } @Override - public PlacementOffset getOffset(Player player, Level world, BlockState state, BlockPos pos, BlockHitResult ray) { - List directions = IPlacementHelper.orderedByDistanceExceptAxis(pos, ray.getLocation(), + public PlacementOffset getOffset(@NotNull final Player player, @NotNull final Level world, final BlockState state, @NotNull final BlockPos pos, final BlockHitResult ray) { + final List directions = IPlacementHelper.orderedByDistanceExceptAxis(pos, ray.getLocation(), state.getValue(NixieBoardBlockNixie.ORIENTATION).getAxis(), dir -> world.getBlockState(pos.relative(dir)).canBeReplaced()); - if (directions.isEmpty()) + if (directions.isEmpty()) { return PlacementOffset.fail(); - else { - BlockPos newPos = pos.relative(directions.get(0)); - - return PlacementOffset.success(newPos, s -> { - Direction left = DoubleOrientedDirections.getLeft(s); - Direction below = s.getValue(FACING).getOpposite(); - - return s - .setValue(ORIENTATION, state.getValue(ORIENTATION)) - .setValue(LEFT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(left)))) - .setValue(RIGHT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(left.getOpposite())))) - .setValue(BOTTOM, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(below)))) - .setValue(TOP, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(s, world.getBlockState(newPos.relative(below.getOpposite())))); - }); + } else { + final BlockPos newPos = pos.relative(directions.getFirst()); + + return PlacementOffset.success(newPos, sourceState -> + getConnectedState(world, state, state.getValue(ORIENTATION), state.getValue(FACING), newPos)); } } } + + private static @NotNull BlockState getConnectedState(@NotNull final Level world, BlockState state, final Direction orientation, final Direction facing, final BlockPos position) { + state = state + .setValue(ORIENTATION, orientation) + .setValue(FACING, facing); + final Direction left = DoubleOrientedDirections.getLeft(state); + final Direction below = facing.getOpposite(); + return state + .setValue(LEFT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(state, world.getBlockState(position.relative(left)))) + .setValue(RIGHT, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(state, world.getBlockState(position.relative(left.getOpposite())))) + .setValue(BOTTOM, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(state, world.getBlockState(position.relative(below)))) + .setValue(TOP, GenericNixieDisplayBlockEntity.areStatesComprableForConnection(state, world.getBlockState(position.relative(below.getOpposite())))); + } } diff --git a/src/main/java/com/kipti/bnb/registry/BnbBlocks.java b/src/main/java/com/kipti/bnb/registry/BnbBlocks.java index 61e8d944..fea1b146 100644 --- a/src/main/java/com/kipti/bnb/registry/BnbBlocks.java +++ b/src/main/java/com/kipti/bnb/registry/BnbBlocks.java @@ -346,7 +346,6 @@ public static NonNullFunction DoubleOrientedBlockModel::new)) .properties(p -> p .noOcclusion() - .lightLevel(state -> state.getValue(NixieBoardBlockNixie.LIT) ? 4 : 1) .mapColor(DyeColor.ORANGE) .forceSolidOn()) .addLayer(() -> RenderType::translucent); @@ -361,7 +360,6 @@ public static NonNullFunction DoubleOrientedBlockModel::new)) .properties(p -> p .noOcclusion() - .lightLevel(state -> state.getValue(NixieBoardBlockNixie.LIT) ? 4 : 1) .mapColor(DyeColor.ORANGE) .forceSolidOn()) .addLayer(() -> RenderType::translucent); diff --git a/src/main/resources/assets/bits_n_bobs/models/block/large_nixie_tube/large_nixie_tube.json b/src/main/resources/assets/bits_n_bobs/models/block/large_nixie_tube/large_nixie_tube.json index 6f3edb72..09df6d96 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/large_nixie_tube/large_nixie_tube.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/large_nixie_tube/large_nixie_tube.json @@ -6,6 +6,7 @@ "2": "bits_n_bobs:block/nixie/large_nixie_tube", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 0, 6], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left.json index 97fc579d..0d24265c 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [14, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_bottom.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_bottom.json index b51222df..7a65c416 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_bottom.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_bottom.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [14, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_middle.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_middle.json index 8895680c..b2c8e55b 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_middle.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_middle.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [14, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_top.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_top.json index bb2bdb19..61033d26 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_top.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_left_top.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [14, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle.json index ae495d72..7611f01f 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 0, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_bottom.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_bottom.json index 5a101dfb..fed075e3 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_bottom.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_bottom.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 0, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_middle.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_middle.json index 01613e8f..a9d6fb6e 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_middle.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_middle.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 3, 7.5], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_top.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_top.json index 28372d66..620e741b 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_top.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_middle_top.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 3, 7.5], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right.json index d841c3cf..3658e413 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_bottom.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_bottom.json index 553273e7..6da49408 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_bottom.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_bottom.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_middle.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_middle.json index 2b14bda2..09d36acf 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_middle.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_middle.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_top.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_top.json index 70a4f91d..f18d488f 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_top.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_right_top.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single.json index 4937c101..08a4c214 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_bottom.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_bottom.json index b4525348..19c1cda8 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_bottom.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_bottom.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_middle.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_middle.json index da9db8b5..841990ea 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_middle.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_middle.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 3, 7], diff --git a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_top.json b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_top.json index 4c4a97fb..863a1a86 100644 --- a/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_top.json +++ b/src/main/resources/assets/bits_n_bobs/models/block/nixie_board/nixie_board_single_top.json @@ -7,6 +7,7 @@ "1": "bits_n_bobs:block/nixie/nixie_board", "particle": "bits_n_bobs:block/nixie/large_nixie_tube" }, + "ambientocclusion": false, "elements": [ { "from": [0, 3, 7], From e8fb55dfedc47bd480ad2af1ccb4a974805ca067 Mon Sep 17 00:00:00 2001 From: cake Date: Sat, 3 Jan 2026 20:14:06 +0000 Subject: [PATCH 5/7] 0.0.41 fix a buncha bug --- changelog.md | 10 +- gradle.properties | 2 +- .../com/kipti/bnb/CreateBitsnBobsClient.java | 16 +- .../kipti/bnb/content/chair/ChairBlock.java | 50 +++--- .../girder_strut/GirderStrutBlock.java | 2 +- .../girder_strut/GirderStrutBlockItem.java | 155 +++++++++--------- .../GirderStrutPlacementEffects.java | 10 +- .../kipti/bnb/mixin/CreateClientMixin.java | 18 ++ .../textures/block/nixie/text_atlas.png | Bin 8527 -> 8527 bytes src/main/resources/bits_n_bobs.mixins.json | 1 + 10 files changed, 150 insertions(+), 114 deletions(-) create mode 100644 src/main/java/com/kipti/bnb/mixin/CreateClientMixin.java diff --git a/changelog.md b/changelog.md index ae2e9544..5c4910e1 100644 --- a/changelog.md +++ b/changelog.md @@ -128,4 +128,12 @@ - Corrected UVS of tile slabs and tile stairs # 1.21.1-0.0.40 - Changes: - - Added resource reload detection for girder struts. Ideally should prevent wrong textures appearing on the model \ No newline at end of file + - Added resource reload detection for girder struts. Ideally should prevent wrong textures appearing on the model +# 1.21.1-0.0.41 +- Changes (Credit to astral for locking in): + - Fix chair corner states + - Properly fix girder strut texture reloads + - Added placement helper for nixie board and large nixie tube + - Fixed lightbulb texture + - Fix girder strut placement in water, and added sound + - Fix text atlas having C and D swapped \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index bc8928c5..d80e3e25 100644 --- a/gradle.properties +++ b/gradle.properties @@ -31,7 +31,7 @@ mod_name=Create Bits 'n' Bobs # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=MIT # The mod version. See https://semver.org/ -mod_version=0.0.40 +mod_version=0.0.41 # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/java/com/kipti/bnb/CreateBitsnBobsClient.java b/src/main/java/com/kipti/bnb/CreateBitsnBobsClient.java index 8e68d9ac..478bba0e 100644 --- a/src/main/java/com/kipti/bnb/CreateBitsnBobsClient.java +++ b/src/main/java/com/kipti/bnb/CreateBitsnBobsClient.java @@ -7,8 +7,6 @@ import com.kipti.bnb.registry.BnbSpriteShifts; import net.createmod.catnip.config.ui.BaseConfigScreen; import net.createmod.ponder.foundation.PonderIndex; -import net.minecraft.server.packs.resources.ResourceManager; -import net.minecraft.server.packs.resources.ResourceManagerReloadListener; import net.neoforged.api.distmarker.Dist; import net.neoforged.bus.api.IEventBus; import net.neoforged.bus.api.SubscribeEvent; @@ -18,10 +16,8 @@ import net.neoforged.fml.common.Mod; import net.neoforged.fml.event.lifecycle.FMLClientSetupEvent; import net.neoforged.fml.event.lifecycle.FMLLoadCompleteEvent; -import net.neoforged.neoforge.client.event.RegisterClientReloadListenersEvent; import net.neoforged.neoforge.client.gui.ConfigurationScreen; import net.neoforged.neoforge.client.gui.IConfigScreenFactory; -import org.jetbrains.annotations.NotNull; import java.util.function.Supplier; @@ -51,21 +47,13 @@ private static void clientInit() { ); } - private static class BnbResourceReloadListener implements ResourceManagerReloadListener { - @Override - public void onResourceManagerReload(@NotNull final ResourceManager resourceManager) { - GirderStrutModelManipulator.invalidateMeshes(); - } + public static void invalidateRenderers() { + GirderStrutModelManipulator.invalidateMeshes(); } @EventBusSubscriber(Dist.CLIENT) private static class ModBusEvents { - @SubscribeEvent - public static void registerClientReloadListeners(RegisterClientReloadListenersEvent event) { - event.registerReloadListener(new BnbResourceReloadListener()); - } - @SubscribeEvent public static void onLoadComplete(final FMLLoadCompleteEvent event) { final ModContainer createContainer = ModList.get() diff --git a/src/main/java/com/kipti/bnb/content/chair/ChairBlock.java b/src/main/java/com/kipti/bnb/content/chair/ChairBlock.java index 703d7e87..789898b0 100644 --- a/src/main/java/com/kipti/bnb/content/chair/ChairBlock.java +++ b/src/main/java/com/kipti/bnb/content/chair/ChairBlock.java @@ -129,42 +129,54 @@ public BlockState updateShape(final BlockState pState, final Direction pDirectio private @NotNull BlockState calculateShape(final BlockState blockState, final LevelAccessor pLevel, final BlockPos pCurrentPos) { final Direction facing = blockState.getValue(FACING); - final BlockState stateLeft = pLevel.getBlockState(pCurrentPos.relative(facing.getClockWise())); - final boolean hasConnectableLeft = AllBlocks.SEATS.contains(stateLeft.getBlock()) || stateLeft.getBlock() instanceof ChairBlock && - (stateLeft.getValue(FACING) == facing || stateLeft.getValue(FACING) == facing.getCounterClockWise() || stateLeft.getValue(INVERTED_CORNER)); - - final BlockState stateRight = pLevel.getBlockState(pCurrentPos.relative(facing.getCounterClockWise())); - final boolean hasConnectableRight = AllBlocks.SEATS.contains(stateRight.getBlock()) || stateRight.getBlock() instanceof ChairBlock && - (stateRight.getValue(FACING) == facing || stateRight.getValue(FACING) == facing.getClockWise() || stateRight.getValue(INVERTED_CORNER)); - - final BlockState stateFront = pLevel.getBlockState(pCurrentPos.relative(facing)); - final boolean hasConnectableFront = stateFront.getBlock() instanceof ChairBlock && - (stateFront.getValue(FACING) == facing.getCounterClockWise() || stateFront.getValue(FACING) == facing.getClockWise()); + final ConnectableSides connectableSides = getConnectableSides(pLevel, pCurrentPos, facing); final BlockState stateBack = pLevel.getBlockState(pCurrentPos.relative(facing.getOpposite())); -// boolean isFlatBack = stateBack.getBlock() instanceof ChairBlock && -// (stateBack.getValue(FACING) == facing.getOpposite() || stateBack.getValue(CORNER) && stateBack.getValue(FACING) != facing); boolean isFlatBack = BnbBlocks.CHAIRS.contains(stateBack.getBlock()) || stateBack.isCollisionShapeFullBlock(pLevel, pCurrentPos.relative(facing.getOpposite())); + final boolean isBackCorner = stateBack.getOptionalValue(CORNER).orElse(false); + final boolean isInvertedCorner = stateBack.getBlock() instanceof ChairBlock && - (stateBack.getValue(FACING).getAxis() != facing.getAxis()) && (hasConnectableRight || hasConnectableLeft); + (stateBack.getValue(FACING).getAxis() != facing.getAxis()) && + (connectableSides.hasConnectableRight() || connectableSides.hasConnectableLeft()) && !(connectableSides.hasConnectableRight() && connectableSides.hasConnectableLeft()) && !isBackCorner; - final boolean isCorner = hasConnectableFront && (hasConnectableLeft != hasConnectableRight); - if (hasConnectableFront) { - final Direction cornerFacing = hasConnectableLeft ? facing.getCounterClockWise() : facing.getClockWise(); + final boolean isCorner = connectableSides.hasConnectableFront() && (connectableSides.hasConnectableLeft() != connectableSides.hasConnectableRight()); + + if (connectableSides.hasConnectableFront()) { + final Direction cornerFacing = connectableSides.hasConnectableLeft() ? facing.getCounterClockWise() : facing.getClockWise(); final BlockPos cornerPos = pCurrentPos.relative(cornerFacing); final BlockState stateBackCorner = pLevel.getBlockState(cornerPos); + isFlatBack = isFlatBack || (isCorner && (BnbBlocks.CHAIRS.contains(stateBackCorner.getBlock()) || stateBackCorner.isCollisionShapeFullBlock(pLevel, cornerPos))); } return blockState - .setValue(LEFT_ARM, !hasConnectableLeft) - .setValue(RIGHT_ARM, !hasConnectableRight) + .setValue(LEFT_ARM, !connectableSides.hasConnectableLeft()) + .setValue(RIGHT_ARM, !connectableSides.hasConnectableRight()) .setValue(CORNER, isCorner) .setValue(BACK_FLAT, isFlatBack) .setValue(INVERTED_CORNER, isInvertedCorner); } + private static @NotNull ChairBlock.ConnectableSides getConnectableSides(LevelAccessor pLevel, BlockPos pCurrentPos, Direction facing) { + final BlockState stateLeft = pLevel.getBlockState(pCurrentPos.relative(facing.getClockWise())); + final boolean hasConnectableLeft = AllBlocks.SEATS.contains(stateLeft.getBlock()) || stateLeft.getBlock() instanceof ChairBlock && + (stateLeft.getValue(FACING) == facing || stateLeft.getValue(FACING) == facing.getCounterClockWise() || stateLeft.getValue(INVERTED_CORNER)); + + final BlockState stateRight = pLevel.getBlockState(pCurrentPos.relative(facing.getCounterClockWise())); + final boolean hasConnectableRight = AllBlocks.SEATS.contains(stateRight.getBlock()) || stateRight.getBlock() instanceof ChairBlock && + (stateRight.getValue(FACING) == facing || stateRight.getValue(FACING) == facing.getClockWise() || stateRight.getValue(INVERTED_CORNER)); + + final BlockState stateFront = pLevel.getBlockState(pCurrentPos.relative(facing)); + final boolean hasConnectableFront = stateFront.getBlock() instanceof ChairBlock && + (stateFront.getValue(FACING) == facing.getCounterClockWise() || stateFront.getValue(FACING) == facing.getClockWise()); + return new ConnectableSides(hasConnectableLeft, hasConnectableRight, hasConnectableFront); + } + + private record ConnectableSides(boolean hasConnectableLeft, boolean hasConnectableRight, + boolean hasConnectableFront) { + } + private static boolean getFlatObstructing(final LevelAccessor pLevel, final BlockState thisState, final BlockPos pCurrentPos, final Direction facing, final BlockState blockState, final BooleanProperty property) { final BlockState sideState = pLevel.getBlockState(pCurrentPos.relative(facing)); return (sideState.getBlock() instanceof ChairBlock && diff --git a/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutBlock.java b/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutBlock.java index f4a2b314..f0a09b9b 100644 --- a/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutBlock.java +++ b/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutBlock.java @@ -101,7 +101,7 @@ public BlockState getStateForPlacement(final BlockPlaceContext context) { final BlockState state = super.getStateForPlacement(context); if (state == null) return null; - return state.setValue(FACING, context.getClickedFace()).setValue(WATERLOGGED, Boolean.valueOf(ifluidstate.getType() == Fluids.WATER)); + return state.setValue(FACING, context.getClickedFace()).setValue(WATERLOGGED, ifluidstate.getType() == Fluids.WATER); } @Override diff --git a/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutBlockItem.java b/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutBlockItem.java index bda4861f..83aefd64 100644 --- a/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutBlockItem.java +++ b/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutBlockItem.java @@ -17,23 +17,26 @@ import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.SoundType; import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.properties.BlockStateProperties; +import net.minecraft.world.level.material.Fluids; import net.minecraft.world.phys.Vec3; +import org.jetbrains.annotations.NotNull; public class GirderStrutBlockItem extends BlockItem { private static final double MAX_ANGLE_DEGREES = 75.0; private static final double MIN_DOT_THRESHOLD = Math.cos(Math.toRadians(MAX_ANGLE_DEGREES)); - public GirderStrutBlockItem(Block block, Properties properties) { + public GirderStrutBlockItem(final Block block, final Properties properties) { super(block, properties); } @Override - public InteractionResult useOn(UseOnContext context) { - ItemStack stack = context.getItemInHand(); - Level level = context.getLevel(); - BlockPos clickedPos = context.getClickedPos(); - Direction face = context.getClickedFace(); + public @NotNull InteractionResult useOn(final UseOnContext context) { + final ItemStack stack = context.getItemInHand(); + final Level level = context.getLevel(); + final BlockPos clickedPos = context.getClickedPos(); + final Direction face = context.getClickedFace(); if (context.isSecondaryUseActive()) { if (stack.has(BnbDataComponents.GIRDER_STRUT_FROM) || stack.has(BnbDataComponents.GIRDER_STRUT_FROM_FACE)) { @@ -44,10 +47,10 @@ public InteractionResult useOn(UseOnContext context) { return InteractionResult.PASS; } - BlockPos placementPos = resolvePlacementPos(level, clickedPos, face); - Direction placementFace = face; + final BlockPos placementPos = resolvePlacementPos(level, clickedPos, face); + Direction targetFace = face; if (placementPos != null && level.getBlockState(placementPos).getBlock().equals(getBlock())) { - placementFace = level.getBlockState(placementPos).getValue(GirderStrutBlock.FACING); + targetFace = level.getBlockState(placementPos).getValue(GirderStrutBlock.FACING); } if (!stack.has(BnbDataComponents.GIRDER_STRUT_FROM)) { @@ -56,11 +59,11 @@ public InteractionResult useOn(UseOnContext context) { } stack.set(BnbDataComponents.GIRDER_STRUT_FROM, placementPos); - stack.set(BnbDataComponents.GIRDER_STRUT_FROM_FACE, placementFace); + stack.set(BnbDataComponents.GIRDER_STRUT_FROM_FACE, targetFace); return InteractionResult.sidedSuccess(level.isClientSide); } - BlockPos fromPos = stack.get(BnbDataComponents.GIRDER_STRUT_FROM); + final BlockPos fromPos = stack.get(BnbDataComponents.GIRDER_STRUT_FROM); Direction fromFace = stack.get(BnbDataComponents.GIRDER_STRUT_FROM_FACE); if (fromPos == null) { stack.remove(BnbDataComponents.GIRDER_STRUT_FROM); @@ -73,21 +76,16 @@ public InteractionResult useOn(UseOnContext context) { } if (fromFace == null) { - BlockState fromState = level.getBlockState(fromPos); + final BlockState fromState = level.getBlockState(fromPos); if (fromState.getBlock().equals(getBlock())) { fromFace = fromState.getValue(GirderStrutBlock.FACING); } else { - fromFace = placementFace.getOpposite(); + fromFace = targetFace.getOpposite(); } } - Direction targetFace = placementFace; - if (targetFace == null) { - targetFace = Direction.UP; - } - if (!level.isClientSide) { - ConnectionResult result = tryConnect(context, fromPos, fromFace, placementPos, targetFace); + final ConnectionResult result = tryConnect(context, fromPos, fromFace, placementPos, targetFace); if (result != ConnectionResult.SUCCESS) { if (result == ConnectionResult.INVALID) { stack.remove(BnbDataComponents.GIRDER_STRUT_FROM); @@ -104,11 +102,11 @@ public InteractionResult useOn(UseOnContext context) { } @Override - public boolean isFoil(ItemStack stack) { + public boolean isFoil(final ItemStack stack) { return stack.has(BnbDataComponents.GIRDER_STRUT_FROM) || super.isFoil(stack); } - public static boolean isValidConnection(Level level, BlockPos fromPos, Direction fromFace, BlockPos toPos, Direction toFace) { + public static boolean isValidConnection(final Level level, final BlockPos fromPos, final Direction fromFace, final BlockPos toPos, final Direction toFace) { if (fromPos == null || toPos == null || fromFace == null || toFace == null) { return false; } @@ -117,24 +115,24 @@ public static boolean isValidConnection(Level level, BlockPos fromPos, Direction return false; } - int diffX = toPos.getX() - fromPos.getX(); - int diffY = toPos.getY() - fromPos.getY(); - int diffZ = toPos.getZ() - fromPos.getZ(); + final int diffX = toPos.getX() - fromPos.getX(); + final int diffY = toPos.getY() - fromPos.getY(); + final int diffZ = toPos.getZ() - fromPos.getZ(); - int nonZero = (diffX != 0 ? 1 : 0) + (diffY != 0 ? 1 : 0) + (diffZ != 0 ? 1 : 0); + final int nonZero = (diffX != 0 ? 1 : 0) + (diffY != 0 ? 1 : 0) + (diffZ != 0 ? 1 : 0); if (nonZero >= 3) { return false; } - double lengthSq = diffX * diffX + diffY * diffY + diffZ * diffZ; + final double lengthSq = diffX * diffX + diffY * diffY + diffZ * diffZ; if (lengthSq > GirderStrutBlock.MAX_SPAN * GirderStrutBlock.MAX_SPAN) { return false; } - Vec3 fromCenter = Vec3.atCenterOf(fromPos); - Vec3 toCenter = Vec3.atCenterOf(toPos); - Vec3 connection = toCenter.subtract(fromCenter); - Vec3 reverseConnection = fromCenter.subtract(toCenter); + final Vec3 fromCenter = Vec3.atCenterOf(fromPos); + final Vec3 toCenter = Vec3.atCenterOf(toPos); + final Vec3 connection = toCenter.subtract(fromCenter); + final Vec3 reverseConnection = fromCenter.subtract(toCenter); if (!isWithinAngle(connection, fromFace)) { return false; @@ -143,32 +141,32 @@ public static boolean isValidConnection(Level level, BlockPos fromPos, Direction return isWithinAngle(reverseConnection, toFace); } - private static boolean isWithinAngle(Vec3 vector, Direction face) { + private static boolean isWithinAngle(final Vec3 vector, final Direction face) { if (vector.lengthSqr() < 1.0E-6) { return false; } - Vec3 unitVec = vector.normalize(); - Vec3 faceNormal = Vec3.atLowerCornerOf(face.getNormal()).normalize(); - double dot = unitVec.dot(faceNormal); + final Vec3 unitVec = vector.normalize(); + final Vec3 faceNormal = Vec3.atLowerCornerOf(face.getNormal()).normalize(); + final double dot = unitVec.dot(faceNormal); return dot >= MIN_DOT_THRESHOLD; } - private ConnectionResult tryConnect(UseOnContext context, BlockPos fromPos, Direction fromFace, BlockPos targetPos, Direction targetFace) { - Level level = context.getLevel(); - Player player = context.getPlayer(); - ItemStack stack = context.getItemInHand(); + private ConnectionResult tryConnect(final UseOnContext context, final BlockPos fromPos, final Direction fromFace, final BlockPos targetPos, final Direction targetFace) { + final Level level = context.getLevel(); + final Player player = context.getPlayer(); + final ItemStack stack = context.getItemInHand(); if (!isValidConnection(level, fromPos, fromFace, targetPos, targetFace)) { return ConnectionResult.INVALID; } - BlockState fromState = level.getBlockState(fromPos); - BlockState targetState = level.getBlockState(targetPos); + final BlockState fromState = level.getBlockState(fromPos); + final BlockState targetState = level.getBlockState(targetPos); - boolean fromNeedsPlacement = !(fromState.getBlock().equals(getBlock())); - boolean targetNeedsPlacement = !(targetState.getBlock().equals(getBlock())); + final boolean fromNeedsPlacement = !(fromState.getBlock().equals(getBlock())); + final boolean targetNeedsPlacement = !(targetState.getBlock().equals(getBlock())); - int requiredAnchors = (fromNeedsPlacement ? 1 : 0) + (targetNeedsPlacement ? 1 : 0); + final int requiredAnchors = (fromNeedsPlacement ? 1 : 0) + (targetNeedsPlacement ? 1 : 0); if (fromNeedsPlacement && !canOccupy(level, fromPos)) { return ConnectionResult.INVALID; @@ -207,8 +205,8 @@ private ConnectionResult tryConnect(UseOnContext context, BlockPos fromPos, Dire level.setBlock(targetPos, targetState.setValue(GirderStrutBlock.FACING, targetFace), Block.UPDATE_ALL); } - BlockState newFromState = level.getBlockState(fromPos); - BlockState newTargetState = level.getBlockState(targetPos); + final BlockState newFromState = level.getBlockState(fromPos); + final BlockState newTargetState = level.getBlockState(targetPos); if (!(newFromState.getBlock().equals(getBlock())) || !(newTargetState.getBlock().equals(getBlock()))) { return ConnectionResult.INVALID; @@ -218,27 +216,30 @@ private ConnectionResult tryConnect(UseOnContext context, BlockPos fromPos, Dire consumeAnchors(player, stack, placedCount); } + final SoundType soundType = getBlock().defaultBlockState().getSoundType(level, targetPos, context.getPlayer()); + level.playSound(null, targetPos, soundType.getPlaceSound(), SoundSource.BLOCKS, (soundType.getVolume() + 1.0F) / 2.0F, soundType.getPitch() * 0.8F); + connect(level, fromPos, targetPos); return ConnectionResult.SUCCESS; } - private void connect(Level level, BlockPos fromPos, BlockPos targetPos) { - if (!(level.getBlockEntity(fromPos) instanceof GirderStrutBlockEntity from)) { + private void connect(final Level level, final BlockPos fromPos, final BlockPos targetPos) { + if (!(level.getBlockEntity(fromPos) instanceof final GirderStrutBlockEntity from)) { return; } - if (!(level.getBlockEntity(targetPos) instanceof GirderStrutBlockEntity target)) { + if (!(level.getBlockEntity(targetPos) instanceof final GirderStrutBlockEntity target)) { return; } from.addConnection(targetPos); target.addConnection(fromPos); - BlockState updatedFromState = level.getBlockState(fromPos); - BlockState updatedTargetState = level.getBlockState(targetPos); + final BlockState updatedFromState = level.getBlockState(fromPos); + final BlockState updatedTargetState = level.getBlockState(targetPos); level.sendBlockUpdated(fromPos, updatedFromState, updatedFromState, Block.UPDATE_ALL); level.sendBlockUpdated(targetPos, updatedTargetState, updatedTargetState, Block.UPDATE_ALL); } - private boolean hasRequiredAnchors(Player player, ItemStack heldStack, int required) { + private boolean hasRequiredAnchors(final Player player, final ItemStack heldStack, final int required) { if (required <= 0) { return true; } @@ -246,7 +247,7 @@ private boolean hasRequiredAnchors(Player player, ItemStack heldStack, int requi return heldStack.getCount() >= required; } - int available = countAnchors(player, heldStack); + final int available = countAnchors(player, heldStack); if (available < required) { notifyMissingAnchors(player, required - available); return false; @@ -254,7 +255,7 @@ private boolean hasRequiredAnchors(Player player, ItemStack heldStack, int requi return true; } - private void consumeAnchors(Player player, ItemStack heldStack, int amount) { + private void consumeAnchors(final Player player, final ItemStack heldStack, final int amount) { if (amount <= 0 || player == null || player.getAbilities().instabuild) { return; } @@ -262,9 +263,9 @@ private void consumeAnchors(Player player, ItemStack heldStack, int amount) { int remaining = amount; remaining -= drainStack(heldStack, remaining); - Inventory inventory = player.getInventory(); + final Inventory inventory = player.getInventory(); for (int i = 0; i < inventory.getContainerSize() && remaining > 0; i++) { - ItemStack slotStack = inventory.getItem(i); + final ItemStack slotStack = inventory.getItem(i); if (slotStack == heldStack) { continue; } @@ -275,22 +276,22 @@ private void consumeAnchors(Player player, ItemStack heldStack, int amount) { } } - private int drainStack(ItemStack stack, int amount) { + private int drainStack(final ItemStack stack, final int amount) { if (amount <= 0) { return 0; } - int toRemove = Math.min(stack.getCount(), amount); + final int toRemove = Math.min(stack.getCount(), amount); if (toRemove > 0) { stack.shrink(toRemove); } return toRemove; } - private int countAnchors(Player player, ItemStack reference) { - Inventory inventory = player.getInventory(); + private int countAnchors(final Player player, final ItemStack reference) { + final Inventory inventory = player.getInventory(); int total = 0; for (int i = 0; i < inventory.getContainerSize(); i++) { - ItemStack slotStack = inventory.getItem(i); + final ItemStack slotStack = inventory.getItem(i); if (!isMatchingStrut(slotStack, reference)) { continue; } @@ -299,33 +300,35 @@ private int countAnchors(Player player, ItemStack reference) { return total; } - private boolean isMatchingStrut(ItemStack candidate, ItemStack reference) { + private boolean isMatchingStrut(final ItemStack candidate, final ItemStack reference) { return !candidate.isEmpty() && candidate.getItem() == reference.getItem(); } - private void notifyMissingAnchors(Player player, int missing) { + private void notifyMissingAnchors(final Player player, final int missing) { if (missing <= 0) { return; } - Component message = Component.translatable("message.bits_n_bobs.girder_strut.missing_anchors", missing) + final Component message = Component.translatable("message.bits_n_bobs.girder_strut.missing_anchors", missing) .withStyle(ChatFormatting.RED); //TODO: proper red color this is ew, and for the chains - if (player instanceof ServerPlayer serverPlayer) { + if (player instanceof final ServerPlayer serverPlayer) { serverPlayer.displayClientMessage(message, true); } else { player.displayClientMessage(message, true); } } - private boolean placeAnchor(Level level, BlockPos pos, Direction face, Player player, ItemStack stackSnapshot) { - BlockState newState = getBlock().defaultBlockState().setValue(GirderStrutBlock.FACING, face); + private boolean placeAnchor(final Level level, final BlockPos pos, final Direction face, final Player player, final ItemStack stackSnapshot) { + final BlockState newState = getBlock().defaultBlockState() + .setValue(GirderStrutBlock.FACING, face) + .setValue(BlockStateProperties.WATERLOGGED, level.getFluidState(pos).getType() == Fluids.WATER); if (!level.setBlock(pos, newState, Block.UPDATE_ALL)) { return false; } - Block block = newState.getBlock(); + final Block block = newState.getBlock(); block.setPlacedBy(level, pos, newState, player, stackSnapshot); - SoundType soundType = newState.getSoundType(); + final SoundType soundType = newState.getSoundType(); level.playSound(player, pos, soundType.getPlaceSound(), SoundSource.BLOCKS, (soundType.getVolume() + 1.0F) / 2.0F, soundType.getPitch() * 0.8F); @@ -333,19 +336,19 @@ private boolean placeAnchor(Level level, BlockPos pos, Direction face, Player pl return true; } - private boolean canOccupy(Level level, BlockPos pos) { - BlockState state = level.getBlockState(pos); - return state.isAir() || state.getBlock().equals(getBlock()); + private boolean canOccupy(final Level level, final BlockPos pos) { + final BlockState state = level.getBlockState(pos); + return state.canBeReplaced() || state.getBlock().equals(getBlock()); } - private BlockPos resolvePlacementPos(Level level, BlockPos clickedPos, Direction face) { - BlockState clickedState = level.getBlockState(clickedPos); + private BlockPos resolvePlacementPos(final Level level, final BlockPos clickedPos, final Direction face) { + final BlockState clickedState = level.getBlockState(clickedPos); if (clickedState.getBlock().equals(getBlock())) { return clickedPos; } - BlockPos pos = clickedPos.relative(face); - BlockState state = level.getBlockState(pos); - if (!state.isAir() && !(state.getBlock().equals(getBlock()))) { + final BlockPos pos = clickedPos.relative(face); + final BlockState state = level.getBlockState(pos); + if (!state.canBeReplaced() && !(state.getBlock().equals(getBlock()))) { return null; } return pos; diff --git a/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutPlacementEffects.java b/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutPlacementEffects.java index 152d4ad0..bdec0bb1 100644 --- a/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutPlacementEffects.java +++ b/src/main/java/com/kipti/bnb/content/girder_strut/GirderStrutPlacementEffects.java @@ -10,6 +10,7 @@ import net.minecraft.core.Direction; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.phys.AABB; import net.minecraft.world.phys.BlockHitResult; import net.minecraft.world.phys.HitResult; @@ -53,7 +54,12 @@ private static void display(final LocalPlayer player, final ItemStack heldItem) return; } - final Direction targetFace = hit.getDirection(); + Direction targetFace = hit.getDirection(); + + final BlockState targetState = level.getBlockState(targetPos); + if (targetState.getBlock() instanceof GirderStrutBlock) { + targetFace = targetState.getValue(GirderStrutBlock.FACING); + } final Vec3 renderFrom = Vec3.atCenterOf(fromPos); final Vec3 renderTo = Vec3.atCenterOf(targetPos); @@ -106,7 +112,7 @@ private static BlockPos resolvePlacementPos(final ClientLevel level, final Block BlockPos pos = clickedPos; if (!(level.getBlockState(pos).getBlock() instanceof GirderStrutBlock)) { pos = pos.relative(face); - if (!(level.getBlockState(pos).isAir() || level.getBlockState(pos).getBlock() instanceof GirderStrutBlock)) { + if (!(level.getBlockState(pos).canBeReplaced() || level.getBlockState(pos).getBlock() instanceof GirderStrutBlock)) { return null; } } diff --git a/src/main/java/com/kipti/bnb/mixin/CreateClientMixin.java b/src/main/java/com/kipti/bnb/mixin/CreateClientMixin.java new file mode 100644 index 00000000..b0ce1379 --- /dev/null +++ b/src/main/java/com/kipti/bnb/mixin/CreateClientMixin.java @@ -0,0 +1,18 @@ +package com.kipti.bnb.mixin; + +import com.kipti.bnb.CreateBitsnBobsClient; +import com.simibubi.create.CreateClient; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +@Mixin(CreateClient.class) +public class CreateClientMixin { + + @Inject(method = "invalidateRenderers", at = @At("HEAD")) + private static void onInvalidateRenderers(final CallbackInfo ci) { + CreateBitsnBobsClient.invalidateRenderers(); + } + +} diff --git a/src/main/resources/assets/bits_n_bobs/textures/block/nixie/text_atlas.png b/src/main/resources/assets/bits_n_bobs/textures/block/nixie/text_atlas.png index 2e50fbbbc9ca7c4b1b7f5479031a65dd7e366d4f..b0d5e24b68bf9a2397f9385b5d759e1f085ae033 100644 GIT binary patch delta 7949 zcmV+oAM)VOLeD~wOMfh|02WUY0Kq3filQj-6jCxR>m*B*N{VDxSu}l7%5h}NF%z>C zTXz@d&Q*zhI{RF45}zHHFLC5V=Zhmd6`gHavMW;AN+eOzNwOX$X}$OW35rh;B%Zs# z0$5=C{@B;d?7VtruvnnKpDNT~cjnjKGqe4j?qBz>M-xJT5Pza3k;N_mA!PB0mVGmF zTp*qRY8#B-XQp!7bP`&}Ce1EEF?OcZq-bdeFb$07Y_--kwsuAP308 z|An#&F(`lpfPW-3t=swhb$NQp&$hg&A)u+Vn2wip-Rx!0zwG{}hRW_~nY~s01B!JJ zEvt?8LI~sE)CBwdFF$@i`7JklIm!i~#^nj`w%<{Kybv>OOL*(k+1m%rf9c!H zq#3jvet*-cuIne$e|NI?o4-7A^{)zB0ECcAQ9cTw!_E=t6(O>D`-EIE@vKY-MLY6aC*aAqJwzLn= zUM5Yy3UTl0Q9bjRDJ zvwxs0bbfx*t|i!zOmEvDB1fW#PVD1b3>n}aT=?KyaAx8v#hHo)pZM4etrJt>*vWi8RGp5YVYg* z>*}8uG`&|))2e%fjt~+Ijsg%uickOuQGXbN4?qav98d2Oj~wn=0G-HrLXBge_OaLk zz*wMo_8_tJ#WLuwUs)PrP&mc2yUqA>jpw(q*Y`=C*8{MQdG{0xpBxbOlV@O@8RvC2 zBUyOl;_2Pu$ro-dfZX@?&ZJz~gT=E4kHrpp{anu9LyWuqwUdjdm(ANt9KPQeeSZ=j z?&|?K;x-d$Vb=n1^5SZmwlMMRMS{)3a(nuF!b6O^rgdvpi)jST+l{7psRd$zmlhPM zJQlG4m5oPUxV-(O6-NF+(ny%Lelgoiq-Q5GF5=_XwPEG2PAmiLM64jcquYXPK& z$`(^J?_btUNsCx=Bi<{fpQpdkR=*Ojd>Ttn^wdOB0K5k%_*o0Uu5#;}vz`kOIu!`c zu!tr1TZ#R40rZrFKsIky{-r|5qX5epf9I}RWe~{$rOtP$Lmxm@F>BcRZGZXbpZfk= zPV%D}LJZmt1Cr{*LI5fokL(RUWvY}-m}$(Iwn58a_c{Escx~x$QJ3l> zaa1}E-Gaqv{#)f~H95!?>Feip4ns9PSV*}O&@mp_#VO?!i|lDFfFWD&zn>Uu>8Ynd zW3f$X$d6bga_4Vx9X!3(On)~Ww=5O_@=s~~*4>eq%padbX#}DCn8g%iQV!PxAVeX! z9snVv$btw!A=0Q?Sd8-MBd!)B-=&JV{C>`5DW89(S(urCBgX}5>H(lS`V`}51?H!L zN|tBjxc*mI*?g<%+RG9~`Nz+SK=vvT=95aFj@LB+DnX^oQnnt#aDV@z=D(QuId?JK zFT`+v?tfn`fa*E_YQwx9KQ&;HFCmGq)BtFRCo}*BCoTz@vKD|4 z0-C1flsldplRH0>5k^ZO5b?@Jp??;;KJ6Q|;%H9$MsL?3 zcYIE?^t5mE{2MZ_r6GO)hWiED`|_X0@@Y(2r%~n=1j=3wCes%zIRUdKN0_@~rc{n8 zUrw~3_Qm5fN$Ij1jt|&(F1!9tuWGZh_i^ow$A{+wkS%*I|Ew_lF7r-78GG404fezR zx%>-TF)4(YEPtyjmVd+j#p`DJUZM^KyMIIAQ=7L1TMK~srcHS7f7uqmEAWvxN`E-jAA{=-8x*;eH`9Ng;;&h1Ri2Gdsqd$ld(7mMg%B5Mo4lS`VPW z_!J6uIfsa(C%?=-uF3r%O=XAV8-+mX(<@U%}~L~$5! zy8dhi)fnGkbnEL8AY&M51{Z}Q4l;2Us(TEg4%mc zLtpNtj+nY2iq6<*lk_m;Vp1GRmiX-$?DHOft)UBrm;fNxpC;b0TZZ3U$G9L!l~Q)2 zme9QkTZjuHpppRi6;HRcC;(N?QmpvPspYlUEL6qUe^>U!QeQ;E4l#CS`JEIY0Z=O% zuz#h&{TM^E54@36T}K?Uc~822T~B+|D{3FVjT}70*uv)VCl2_!ajC(~uWh*#cEpqO4}S=06u|66lym|Xz5Y7yzsMwop9MlmxRlj*FY^Ex zRHGin;X4l9Ei23duSFeY;q(4 zB!JWq&=dz!X=sUF%d~_T6+le)%`A`_bG0klTP%TO=(@D5c8vuP$pKNw4}VRarSj`= zx)w(JR+!I6)1229%v}SR?A-GWH~#?lz$yQ^tf#jd8CI_;yd5e3W+a(bjoH>JA3av- znMYfkMqj-6S7bz4BnL!s{>A*1L%p$Heocr$fw{)qhv+0Ut=qofcCt4fBYO|R&fhIfsr)_o5=y^6 zQ9QovElIj#T+_?jicHdQ|II!xJ0F<&J4Zj6O}X64YvqH>eI6A0Kc_s)^BOexZVFCV zbADwr0gG>i)fzQ4#dBX4wjS`>Qdk(QW-Hb^?2{+R`MEuPEsybW4}Yo=kx2?f=lmH5 zc`K7g+e&noobp)c{I%MIW_SG^)&r(_+AoxuyXc=T%073H$ z^P2fdFYNqf(=0z$WPg$(*ME2Kf>>gHPh|+UZckkO3c6l>0Df^#Z^lQOHvN4IxFS%M zBE+Q7v_`G4UF`BKXBMJj2QJ4*sbr>+`1@5%oCk6#lL-w|o z9_S%g$D1*YDG{i@pBmCRvdZ(7sfbqRvC`!Ws?fMl6g zv?;vwY;bb~%7~2Cu}LfZ78f!QF5GzlO`Y)j)Uv7^`lq0~eR;r*emb(3i*G;FBL6ft zpO4H4NElClKl$6;13&qfBiWP<^98jTdjSaR>F?HUaGk>Ku^h7H6=Kl#=?}0AP(cE| zb6&OlgY^9uGJmaQ24@0R8Ox>bAE^0XA)LnM0RVF;Au>rI+N7EHh3PY}eX6I@-j1_N zH#s28X_#>kfTU^b1wS^GOwTV~%MnI-gQT$#*Gnc%{jrU~vMqE0f^-G+X;^dt+#G2l zlQe#ot$*pAb?*oHZ#?>l7OW;`E2abaA$<6P6$+1p`g0pw0%tT-RN zP$3Fi*CuHyo%i;qtt*rCD8N`TJztEET(AKM)OHiuho?-!N8X$)Ih1SsJPmCmA%Wg3WpqV~`e#-9+A`F~Kxk{=<65IB{=>qU?`51FzVZ1rp4 z>DIz4{7I+h@+0+XPf8d(?K%&CP)gCXnjvkc7K&Xsu&3!jxgp#4(E?kR8ABCxV|JI1_E#>UQ0 z_J8RwV`si56`cv_G>TAEyry{mxWyj(uL7Fl2y`8qI)T&>`^b`n-JJK5pZiTDRuMu9&A)Yhe14 z>-f0w1{Ri6^HYMwUZACVSz6)13yVPj3V%Ns^E6a1(^7Lk+`_Caxp;KbMKI+P#vFFP zY521Sv)AA2D1dA^yc{Rv3x5c0 zB9OkxYS)EuUsYGPB=jOb{R>D%<`ovP2y-zDLKYCt1Pl|q2)5}v< zgai9L4v_E#7{>)Cg%G2nFrlaTmmJ7_@3B8@Hxtmw-f+=9O!{#xL&)6?FXdoE&g&&bcrr0(og|cu7YVt8^A@B9LE? zxv}qW8hh7G4D#Mo@;`oWM`2!o<1w`ftvLPH{A%p{XEb-YlwB0hGw?V*Cw~G}6sJ)D zKj~BgYaf6)_S-`&xDWzJowRN4%fyr$(M=5UIw2;+MNDMV4Z09U*~F#*tHP)_5y;EL zFfaT3rX@Rh$ZH-!Mur@5>T}3oY<4jkkdSJ`+yz+jPl)B-za?ZLiT+so9dTG(^kuw7 zTZt$3|22+%tQ`RG-09r+kAGl=C;NZj*oNQ#_V+P#=9I7eJJ+lOB&W*~LP|sri;LKz zt;7|Y^&5Tcct;H3u(*gL$NF*k4@R*1E1Pli6~KcBBls+U3(Z>`?a!V+kN-D0ilH;7 z(79$EdU`LD%KzNJvAl5Xl(Hj)l!yY5uKWd?!{Q>o|L`;TA79>tvwvSWiq&7)jD5e6 z#e)YU=$bg}C<3cjtpfT-@#CjXVEu=?fdg+zm*L%~P5^%*ZAJ*m6Ut1$hYq}jz1y#} z7J>VkZSCq`xl{@uB!pC)!1Dl}{GT5OkP`s_IQxa80DyhJkp%#BeS0Ek7KD%mLi^a| zzb$Uwa+5FPXAkek4SzrQCiY#^4Seeb0KneuR{{W5e`Pa(oKFA%F8s8-CGgl&{TRIS ze9qnn557K#eb+4E7ibW&$b>f&@ctVBIJ5*l#FhXd)ka050YCR%O$;-7Z@Bk9fec0!Ijecs!0b-*^X)zVRlScWy)NI|KOCd#**Svja1;vu4Fe*4Njs z27v#vEB6+iADt|P0$+XWZx(CkV-G!;TQ}U{ZLBxl_z9!2x~EUuj% z!-n|`dc?flITVUyPS7lFmiw>Ry0!R4DmfNezovKZj-9vf?c2QLJq=B*nb~Y|aBOOP z=JdNqP8~b&^5f^voc`8ab`CA=9he#&!`p}7wksDQRZkQ^50J0?_4P<+=kXW6I)vL- zw_`^{;D7gC|1}cr9r$?nN<>gri;C~g`r0$Omsox+|9SV`ed5u%k>Y{7_wEw~5wPN> z8~;pvU_~z)=2qdd)F7H0IGzr5w8$G*Gg)n|WtS7USY zIJnjxS>i;Id;M%8S`z^@4S)6YbNGXsugCSREjZXefFJ(hUVP_Q2XS#Sg_Vs>NT<{K zb;c}TU8}GBd!p@l?4bvNz58qnq3wad3xA5|BnqD0^4o=f&6T_GzkpG%Ecd6=X>B?+ zfq(0E-tgJG|MQnWJQnT1JA-4`(2ztT9>HuHh)%^ZIx3*8*?|vyX2VVKMBNWx-~aR5 zMTXrEvb2c+xu<_^tPan-eFU?qY23Je9e$Ra#zaRq*3|-ASG41QJ@+C2psu#ow%@&b z?>@16?>@uMN9RVcJ74*C@7*Wv`qZZl`+v1P5ZIRcKfs#kR*z!M^k-=kiPT{2+TQJ- z_~Qq@HQl-rqq8&U+qeO>0M4C0k27zd#>MmJ5o?%73>nmSbYjK7+jZN9E!TW+Zg#4w z->pc98&M$y;&pYHp3C5gH{Zlx-u)3g^)FB22`!4h`M_=X-naf5jVn7a*4>A1?0J{UHEg4?eALo)?jQvuPOg_4Xy+ zciTt4INaEcqp!b=uC|rvKY0-Ad#}Lg=s1$eNvxhr;ovWRfo)e_h1#0+7`Zrs_ul%^ zk4I-_p9kqXy+}ghN zJ-45om_bvt0h4FWpOtFQkWfB(pjk+|w=tf~d>Tek`W zmqzfD!-t_|1!`+*42cz*`ndIn$Ua zG_*A0eYbrOhYlS^ds_oCnSV(<@yfHjGoq3BnOA^2Y3(w{DEI1DY7_u z=^{3CbQBXRc=&hk-6saF@5jcC8*%)2ZmRFb!c%|$K0N-vzmrpjhkqV)Eu2$#U^WuP zi_v=Q${z}!a~kga;2m2hFpuG5{n)Uv2S?7HMe%_mNZdBG;Hha#JP!gaW<7gZ$lh?Ykzuxu?u+k>p#KOy?xlS zWh*js^N7|08&`DT+0$o{sH=k(wT>nF+*iMbuYd8Y=)L!D0KmW(zlzU!X!`5lrIvd) zo@VKr2iEe%OF}CD<-yk?>_PP`@RhTc>G!5OaJko z0RRs?3n2gfU4STd158*o_wBj>6SZ-iu5U9O3U4A{n145r96k5c%9f^&48AZ>|BFZd z4wp_(;LN~l05W*$ofm*;BQQGy;1b489LKt=uEby}i(BsaAX=O2{k>6zkSZYx01dGi zcJ-~tlShx^n+TLm8ai>}*eh?n z_4=urn(XGup7~L|X^u=W~mC&S$fTL?XC$Q!iGx zG~>j@OQ^AUIzRAl=M4XwKRaQ5aiJ4a(R!SVTfS=BE;hhw#vmppF806r^3y-=TE8Cm zeE!S0;)eGlzIqkn8+s92(Th~17NRMN`qdqHWAGe$w_T0@@LM0nk=GARpFV!#X~#km zQh(({GqbaJ?bTP&)zyVHYu2DC9tQw4H8tWl@4N$j8+(z>W+4DH#OsmC%wgS%c1+LB zBVzIa%)j|Z*b{BXVN|HRI~+!C;?`~Xl}7t5SD zcIfX%BlVx@-gI?hT~8k(5nys|8jb5)(SK4?14QOAl%7L!Viv16w4kePB?b<^_H0dN z_N3j$qo8SB5lb9g%2GEz-uYK|p`|*FiXZubAb3A~hSd2~0BY!iS z8c4oz;N;M`)V5PSr?Gy^oI8pGFTaA3lc(`}zyC?ZqN%s0 zVijFfnUK(l#$vH^pa1;l6V1&n7$2WNHam~Hx;mUVa~7>Vt1&e-1(D5SZY~#*S65eu z7hik{FTV5=T3cF@_uv0n0Ht{VdSdi*0}9_+&I5QuuF&F9XrKIqr$Y-OVB55qO^za) zokJF}pQUF`CNI8wWb)*}7i060+BrnD@yzVp1u;L9nw}dMGgH&G@l97=`STwkGBtAU zVG-dV09o2-Tu_4$bzw9cvmqcD0h53rxs!k(cozJB;r=6HwspxFWl3kI?Rw9X#PLlO7N$bT2NKkx&Ao1J< z7Qh1A_s8sGW_DgZGgvIx-%k~4usieX?wQ&CPWP|-*P{s`Kz|5Plh|SxfDp2H#LK=J zIVO-u0=13i@3T|-Hj{$Zu~BnMP>h`}H7S<01DFQJbz7}cc%SfG=J~vZ1&CqfM@>Z^d?QsOHFH% zy8nf;3Na{vB!7SuG_BkH{0({f$!GvzU&bbiM3l&%f;cr-#b!X_>uU{R4`1 z5X)AX?S&BLzp3*A07P!ywr^0_?^pmaB8*$>_g?5XyRTVS(-NKxR=4c{C=;eY<^z(7k_>;)@@LG+5GMHx!c>Ao*Qt_HvX9K#j)}-fO?B0{NlNvW?E(U!QQ{@?U&= znKZ+eBY$W*)ph-3`tNS`LGzbKuKrbF3xE((DauCy3^+Lg{USszZ?AhI#n@@#XCz=z zNe>mby3XTRF<}UqaZFU+zg9JYUlmlA{R@_HwO&XeiY`pg0;}!BqgX zSWVf9%ZP%e#mvJ{VygOQ9p#5^(A+6Kj1-Bz4S(k0F#qMS=3j{)VPutbk;-qpfA*vT z+I!gfLM{z!{R8w-KO^h{EGhgt!pNmb^!LA90Omcs>|Xn;n8j#@5mL=mVGAH-+0s5b zdzmzYmcx3yY&v1fU(MIQ683VG3qWDYuhWx0>(v67wruV8k!r*=(=VMdZ>{^CFdXlc z&VPck(D?;Tw^HZtTK~!^cLHWo?$doU9?CR6qR&SjA2E0#$MXApbRW_g-Px7S*m}`{ z){yq$^7kGEDA@-h!t&eg^TL>?c^a#ayaAxOv#hHn)%6Nleq;XD>*vck8R7j4Yai(T z8|t4QG^1Bg)2e%fjt~+Kjsg%uickOuQGXbd4?qav9#8KPj~wk<0G-f1q2{qq=U8k3 zU@TNTdze`IVi^qAuPhBQDBR-Ny=MG*#`8Pa8~dd0>jBuuy!(oUPYnp?$uls|jPpC2 zkt{rN@$_Et{IzIfWL4u|kIl@To`yAAbo9M*%88MVjD|5>3#Fe%`G7)r@O6a2Nuu1&|&p zTTIcq|B`M>+QgEZ@n126JpIkK#+7*G(^z_U@_v^Z`^Av!-p(mVb}&sUN)M zBtM!V#GvCaAgNAl1fa6<$o>dYrb^jFnZ}G|8@3EipQA5}-*1M4{|O``TQ%*!psC5IVMok007m|rx-sYFh31c zvOFWljK9Ll=37nIUY01zKYm7pvR8>HpH#+l{H_5|2`XKdvh@&#`+pZT|HUN8xr^a` zA%^?){{yuEs^|Qx4eNRUkvCOK0#H4#0jqRbtUr45JK8Fce-&N(Ac(2+LQI`EKTyU_ z`?p`>=f9AITo8l=!R{Sx)l9L{Rk-Ei1pD+0$AU!zMzso1G*nYrDnYpOEer>19UDUn zS3yLi(n_oVG8Y6gLw|+$P-uC-fKODr-@#!EfGjwHge0*-1E3+1)BqHmxFllAS^z=_ zXqu)gcOq$e6OinU)cd~q8#g}UYh_>{zq;_U_WUPZ&1IU=cJ?v|A%MBGK)fdZO+u5M zBo*k%XSC0zMDaCjwT;kflNGu4x^2G6ogc}Fq9qWDL}jB;i+^38_6=HbG^c%oziXf$ zuZxzE_6@#&L)Nu4r0?Hwzd(Cm{?k}KjVb#y%DjR=*{i{1`hq1VV9w$Q^LEUX$}ttl zi5AwrcziY`U3Sy)A^Xl{*Wc|`ZFcqnuD$vA=zIXOW!Ll13DfT~?-Z1=m(9~;Kise9 zU)YLCA;e@^U4OCt8}2V&H_P`Dbtv5Zv$H9!*zLy&Slej++|nhRe_-rXQs(I&$#mv; z6GU!ah}^so*_7~nA7aF4ja^#)N3ZAKu)L!AR|onS6*5DWAJY%p;%Hw9Atv?zM~)T0 zt1SLj=3YQ2;L=8m)hueWS8MDl1@q+QRds_e&OJyp1Ap)lykX>VJ<(05nb0M*%uEYGSxwh-^xT;eMfYY}BldF*o#^pV0IIj0hn{gs=4g3XD&o zV5d7oBt7|M_6bey2WcrgB;P1h^uR`hbc@V#y=1O^o+uoFh2M^JzJ;fK<^qbtfFoxm zQVBT^z*^yDeFAoZAtfRW2wZmzXj)9uv_}2UVSg0Cc0GW?cSS+)J$zyRTM29LHw|OC zmpWqVyeK+jGoTXUtFQt~(VzW>c-}qhG7fXE+2`9wZ=}YgV2nm5&(SXYu zy?>7(L}4y%0T{6#`y_w>tn2aVNJL{1a;c)06R=8Fv>~Kg@N@zS zAt1(13*$^WA#x%}IHPeYqKrqr7>Zelh^zRbnwD@($-0hO{4o~ zNdlFDRD`Ns51_at831Hbi@PjUd(Wa}9h8CyL{jmjqY+E6@>e(Z0#Ft^T-k6^Yky^5 zYR)`Oi)ljSgua~;n%3y60+id?r{ib3XrbZ-ser~71c1N-z{+3!IL-qoI`52&OG>eX zS8*+S;)gl^plcC0ZM`v8yt2yd6D?Mw75-#xtz{rpjGYs({22KKF~Tg&n13}?X%ryf z5M>xApm{xjU<9=-cfyYNa{d7kjei1Iorsc7z@pdR;QbfblnAmwD2bM``tD~Q0E24O zqd0uWp}R{8s{mYbGXaSX?<=vx`k=4cQ2-JSR(j$GM*$FGvM3dr*5vPvJ_Z||6o4d< z9s-&ZKsp00*=w7Y5TgR9Gkh}(q{lq%iuN{3Aep)@%T{^D0*KUrDCCFc&VN$*4Y*wk zvwbV9=c8%vYYXbv02Vv%e51`j#657!e=g_i?M9~6YYJ~i%D)*&rd4CLwadqdU3%8h z7PrwCKmHXNQ5LBIQJjAn7rcBX;G__#0Z}Z7-$IuO zfT1vkt^f4=+u1qXN^e6M@qalJ&pkh<^Yde0s@!h&=3`{e`Lvup^vat1m-1%sTfO}Alh<|KKAU+q&ILup_ zeA-r`yX2O~Lg%m5CN-z)@3J01y=5DQplL-}hDziYb$MmeTZro=lV*hZ7n;9eUei^u zm7L0KZVg*o$I(a5TA%)AL9oA;cHNOeR{#JIpY)ZtixaTUvJFGfw8EA_wgnJ2zbLO+ zko2O?UpCG1V?{P4^nd=lcNfGK>w79Au=RT48duQu>jMaicX~4c(sbzW+rSlpsuUq6 zg{C!Wh3#UO=Tc@NDt72{jHF9DjQ?AYvtaMc92HJo&`5^?buVzI{XQ`$kREcjwe>&` zc{<+AX-tVw{r&Wi!I4#-uS`X>J0CxOfT*y&p1$mi=k3qNF@LT6(?5`LhyWzpwBpUt zrRRW`BTz*>%J&`298hlbjIItPU)rw zgf$H-E&`CUZ2b_#rjqFe#cw&HC~ufF7UFuzq-i|1DO|RNEbyW^2mmB}MvWuF+6H?kOf3NYB*u#K(F+x# zu=Q+`rZahOf5yHtNsj`I71ImE_=p}4P`1L615Tq3`OyK-N@+U(fL?fssn-jUzgwEV zkDUuP3V&gl)2@l(eu1`L!(4(=CHEBzP}2x8+%L4ou3%y$`C4|HQ2@>I*>^gcrs)%z z!pwy9Vb5@2vgBEaetA$TF?lEq33aJ{cP)JK3kd zjDMZ=npAWqpxY=yQSq7+`QsLQ?7s?VP9W5EXzm2kL+m3<5_NOlPkzS#gH8z!(h9H) z15OIl@LK`Hu#)>wVDNbGQo)mYIr2k>Zo_YGW2olid<@}P(6nwXh+Q#HyVk(;MbGhZ z^9?L4rxv6Hi@iWg^|G|Wffp8&02F>O)_-ZJex{}BKitBsExCAf%SEu{6U7|%plJlN zv%VA~$h6qPSh!TaRWuy7l&F@Wx-d`w0(R>Ix>41^KyJe0|6+xSsPh+z=t;!-s4Kzs!CK(f2-Hu?EMBCkFYS zBq2YMCv1AYUVh>8jm1SlP7QD(kOyuKH#Y~Imvb)4i9mi@8-CJ}#V(x%n+O!tV{Y#I zTgKiE6NCIWm4c7oJ5iVy;Cf7LQY%jXwZ0lV{~0Y^9%UEB^9((X&xt@4#eZ!SAV@lu zz}^R7js5l!3oe8J(kC37`!X@*W(*U9{7#68a1j&Pbi*!$Q8uwD#HuhVP6YBZG0e}t zplQiY9`c(ti{f;;!E(9{(tgXNk z`~Dh7Kh_Qacx;{(}*$`pPEUdPU$;>;J0V1LzDHev5?6MZeagg(q(w}spG((NShHt@;QUX^TLO?7e0Qzd(bKMJBqLfcM`3z@;VdA+`hvsWvJa4fwhDnm@nX58PA90uVw>MAriF z=mPxid1q%JA!Kog{~!~?56-s-v(ChD1K?TtTYAppr`yWS`+tx86#um2AAt{FA1M1f zfAS*m%zq7JO9+Xe1#ssd|04kR%1;QXP9pIEI92{N1-`8hugR5~5Mm&X1 zxfz#Vwh>1^)_;zpCE!OkR?BfhT*`3 z1Sg)!WX>S}3LGH>5{U%feB&KF`o^1R*|8P1?+oBm@3|IrogJ8&owX`Ps-dA_6#)E~ zo%&mJesrP~3VijgzgeuEk3ICDzHYe7+gNY9@y|q0=6^iub2C^oJ&Kn3SzJ3khV}DV z^oV(;Mmmo%&B(| zpFFz%<;TyRKJ~4++#Hs*cVKFC3~wKL+o@cHR6TJ3JwU$lH#8uVo5x@L>L6}k)sF2k zf!}-m*MCU1ci`jQD-c6jEh@e{>ub;GFR}bu{`0Oqd&Q%3BgF%E?b#~|B4Ec&H~yLU z!17)+&aK2{=|QwKc4AZN9Fp-S)aB-EZDuFlE&N+3mQf4@%Eh5<|H#D=)IdXaW(L>3 z_vRnH|E{|~+#$~H0@yZ%jel>y^vhdbdhENqUw!tccQv)NjDu_K zktI$X`s-(t@tPQ*Y51$BpTi&Ad_AsjU4{ew1Nh+|?!k9{bpRJ8(^%2ej7%nDTxZPo z)wRaTzdPQJ#~ykR*t6HM5ZZ1Cyzr-ZPNLws&A(mv*IKy?{|lJ)%65MylhLNr6S!{2 z4S%1#`#*pA!(;IdyfZk4^^GYc6EVzYfcR7bqoV@a>h1WzXV%}8NY?-G^?g6TU1Zt) zAWNGVpg;X<>+12$+lMimp2m&q*5YTWX-sr=lpR^d0@fzx|delVVrk)*k`@cH`5==6Mm>H=9O5UvFRXeYbt& zi^EObIP&_-=xSSm{u2kVuJ;Ozj*cUhn#8KPG!FdY7ub5`Rj935hmi{tc<-$r{djz4 z_IUsgRjjatL`g&s%%CUO{cJKSN{{KJxU(+7|?B4fj#O|rCW^-NBvRm7?yyx~a z6EkRzH)8ViIUIQAImB|am>f?7v3Yd0G-CA7J2-RVZPd)pp|hz2tvzeevwv~hhZej1 zgoGhhS67F_gXeH|DucVWY{o6Se+TjU1p1C1!mF?U8h`)DkCD9UYOJgU?pwPO0~bf| zlS7A~B){0O6T`s|H{Q8?<=UpqWD1k%Q8X@V z!uxLfAPycpg!Z;ZWV4fa;(wKAvHgx)(Av?7(`V0NCaxj5t_zdMH7s`d2?;}7WV3j4 zco;pctw;?H;Sc_BFP_?e5P$yN@1do&9l4ffeEq-wDL(tDdoeLKhWY)!MoQ#x;^GCY z@8~EdRPgZc+Ot;-T;Gok8#dtBF@37S-(EcazrUj^!$S{x7JtsIJ1`rI*orth63xI|92>9Nik6mE%#K~eFMjqay1G_i`<89keA!mSL=LmF z8H}ABMP0THnpVqkK(eHXBc@?%XD7~1yo)pGG zotsCz7TB=71J9m1gJgX@w77jN(dWMUHGKVxUq$b|cLM+hzW7yq&PUVV_%1d5-FTYg z>zI!uS7IVtTxCdB1d2n4hu?bp`#Wyga9!JqBvx%&hulmSKYQf+IQYx`*uHTCy4Q4K zJTr|8V@FZZ3;>ZCx?3U3>P5$KUsD0KntV0$=)%{|o?l z;8_6q@9zRcu^V8)uDS2j1(>K!;8a7K=}`C+0n@yJ)PLyNr&cU${>b190}a1;r6JfGRS2mP;sDTCSBIT_ z>+s}}V>mG~ite^nv@h?(;P4oRE?&fn?rzk?Vi*}6Lu-94u3O!WoDi7LiDEqQu04Cj zF_Rj!e(fa!Ws`=EA3yraTW`I7 zvZf}tX>w>7*IfM`?ApB>x%nxiGGk~+G^4&DiH?>wT(PMauN-_GgZtk_Lro119@+nV zm~$Xxv55&yLrrZR>Khwz{hA)EXiOlcX=v-{K!38W1M~CxqMq})9AdE;uHD#+Rm)m% z{K7@l*gTyd__wpB|E-_hu)es^jj4D8&L(VMwe1ueU^inB6B8HuUw!%MA9t-=hkHK% zWn6K?`;l0+5{dP_s9WBPbgUMlIgW-^9e88#EPA(IjsNglAI0I<4^E#tcKm7ALK0Ht z#DBB1vv}>*SJBngh1IK9qdAcP05mr@;WzKR1AQBMk;~;E05m2Vkj>6v?eca^&&?xd z@d3=g`A66tZ^z^B`*wN7Z|lKbhrZ%k7?}w`Ph1?pzUTkM$-vqYu&w+6P+MP@J%04y z-;c%`KGVJN>g3v5FIDkPpxr<33O<~Ol(=T6*r-+jd$r%#^7lRtk7_y4EQAQp?EuC})5l#2mquB%0M zem)tCm1e`{=lyGT(}A7#75Q%x6NKIX`jY#!Pkv$_{?GRu-)Uft2e1{3v8j1vXMfWJ zsWM9eN3j3pS1@wo6n^jbKZ&|{`mL$D ziY}^5NaV!p>gvvZ{_~$twzMq6`1k~Jxp~yr*W>ubKb`CLZJUcsgUd+#=r{~7S%+z#kV&j!p{`^OXO^uv= zSj0F8K$bQd7t|m`T^P+qvoRkC0+WCsK^FfX;qN12Axlbs00000NkvXXu0mjfo Date: Sun, 4 Jan 2026 08:09:45 -0600 Subject: [PATCH 6/7] Weathered Bracket --- build.gradle | 72 +++--- .../5049ae3bedad6534d1775911872e86abc07c482d | 18 +- .../blockstates/weathered_metal_bracket.json | 154 +++++++++++++ .../assets/bits_n_bobs/lang/en_ud.json | 2 + .../assets/bits_n_bobs/lang/en_us.json | 2 + .../bracket/cog/ground_weathered_metal.json | 7 + .../bracket/cog/wall_weathered_metal.json | 7 + .../bracket/pipe/ground_weathered_metal.json | 7 + .../bracket/pipe/wall_weathered_metal.json | 7 + .../bracket/shaft/ground_weathered_metal.json | 7 + .../bracket/shaft/wall_weathered_metal.json | 7 + .../models/item/weathered_metal_bracket.json | 7 + .../blocks/weathered_metal_bracket.json | 21 ++ .../tags/item/invalid_for_track_paving.json | 5 + .../tags/block/mineable/pickaxe.json | 1 + .../com/kipti/bnb/registry/BnbBlocks.java | 12 + .../kipti/bnb/registry/BnbLangEntries.java | 2 + .../models/block/bracket/cog/ground.json | 209 ++++++++++++++++++ .../models/block/bracket/cog/wall.json | 206 +++++++++++++++++ .../models/block/bracket/item.json | 110 +++++++++ .../models/block/bracket/pipe/ground.json | 119 ++++++++++ .../models/block/bracket/pipe/wall.json | 110 +++++++++ .../models/block/bracket/shaft/ground.json | 110 +++++++++ .../models/block/bracket/shaft/wall.json | 110 +++++++++ .../block/bracket_plate_weathered_metal.png | Bin 0 -> 491 bytes .../block/bracket_weathered_metal.png | Bin 0 -> 521 bytes 26 files changed, 1272 insertions(+), 40 deletions(-) create mode 100644 src/generated/resources/assets/bits_n_bobs/blockstates/weathered_metal_bracket.json create mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/ground_weathered_metal.json create mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/wall_weathered_metal.json create mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground_weathered_metal.json create mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall_weathered_metal.json create mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground_weathered_metal.json create mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall_weathered_metal.json create mode 100644 src/generated/resources/assets/bits_n_bobs/models/item/weathered_metal_bracket.json create mode 100644 src/generated/resources/data/bits_n_bobs/loot_table/blocks/weathered_metal_bracket.json create mode 100644 src/generated/resources/data/create/tags/item/invalid_for_track_paving.json create mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/ground.json create mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/wall.json create mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/item.json create mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground.json create mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall.json create mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground.json create mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall.json create mode 100644 src/main/resources/assets/bits_n_bobs/textures/block/bracket_plate_weathered_metal.png create mode 100644 src/main/resources/assets/bits_n_bobs/textures/block/bracket_weathered_metal.png diff --git a/build.gradle b/build.gradle index 56c2e1a0..26fefe56 100644 --- a/build.gradle +++ b/build.gradle @@ -244,39 +244,39 @@ def getRelevantChangelog(String version) { return log } -publishMods { - file = jar.archiveFile - def changelogText = getRelevantChangelog(minecraft_version + "-" + mod_version) - changelog = changelogText - println("Using changelog:\n" + changelogText + "\n") - type = STABLE - modLoaders.add("neoforge") - displayName = mod_name + " " + mod_version + " NeoForge " + minecraft_version - - curseforge { - projectId = "1398383" - projectSlug = "create-bits-n-bobs" - accessToken = env.fetch("CURSEFORGE_TOKEN") - minecraftVersions.add("1.21.1") - requires("create") - } - modrinth { - projectId = "T8bvmqVZ" - accessToken = env.fetch("MODRINTH_TOKEN") - minecraftVersions.add("1.21.1") - requires("create") - } - - discord { - webhookUrl = env.fetch("DISCORD_WEBHOOK_URL") - username = "bits n bober version bot" - avatarUrl = "https://cataas.com/cat?width=500&height=500" - content = """ - # New Mod Release: ${getDisplayName().get()} - ${changelogText} - """.trim() - style { - look = "CLASSIC" - } - } -} \ No newline at end of file +//publishMods { +// file = jar.archiveFile +// def changelogText = getRelevantChangelog(minecraft_version + "-" + mod_version) +// changelog = changelogText +// println("Using changelog:\n" + changelogText + "\n") +// type = STABLE +// modLoaders.add("neoforge") +// displayName = mod_name + " " + mod_version + " NeoForge " + minecraft_version +// +// curseforge { +// projectId = "1398383" +// projectSlug = "create-bits-n-bobs" +// accessToken = env.fetch("CURSEFORGE_TOKEN") +// minecraftVersions.add("1.21.1") +// requires("create") +// } +// modrinth { +// projectId = "T8bvmqVZ" +// accessToken = env.fetch("MODRINTH_TOKEN") +// minecraftVersions.add("1.21.1") +// requires("create") +// } +// +// discord { +// webhookUrl = env.fetch("DISCORD_WEBHOOK_URL") +// username = "bits n bober version bot" +// avatarUrl = "https://cataas.com/cat?width=500&height=500" +// content = """ +// # New Mod Release: ${getDisplayName().get()} +// ${changelogText} +// """.trim() +// style { +// look = "CLASSIC" +// } +// } +//} \ No newline at end of file diff --git a/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d b/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d index 9af68cfd..ed7c79f5 100644 --- a/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d +++ b/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d @@ -1,4 +1,4 @@ -// 1.21.1 2026-01-03T18:53:14.8520103 Registrate Provider for bits_n_bobs [Registries, Data Maps, Recipes, Advancements, Loot Tables, Tags (enchantments), Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), generic_server_provider, Blockstates, Item models, Lang (en_us/en_ud), generic_client_provider] +// 1.21.1 2026-01-04T08:00:41.1109542 Registrate Provider for bits_n_bobs [Registries, Data Maps, Recipes, Advancements, Loot Tables, Tags (enchantments), Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), generic_server_provider, Blockstates, Item models, Lang (en_us/en_ud), generic_client_provider] 55ef065722d329b3c054797cd63a36d59f1634a8 assets/bits_n_bobs/blockstates/andesite_tiles.json 8810b9385c4f0297369a2d35ef8435b216bae4bb assets/bits_n_bobs/blockstates/andesite_tile_slab.json 67a9c45ad788cd261f7b545e230d1d01bf3fd0d8 assets/bits_n_bobs/blockstates/andesite_tile_stairs.json @@ -114,6 +114,7 @@ a34ad7e7327d467d226f28acfc0d84129e0ad54f assets/bits_n_bobs/blockstates/veridium 93691f0669222dbf4b65d002f0c1991a8a10e2d5 assets/bits_n_bobs/blockstates/veridium_tile_stairs.json 4c17b1398c1f6ebed5d04ae858c1227afde2f7be assets/bits_n_bobs/blockstates/veridium_tile_wall.json fc576b4d7f9cd924c8c9970c1a4c6163255cb41f assets/bits_n_bobs/blockstates/weathered_girder_strut.json +46dfb43efa6da8b3a52250b450a8415605fa5265 assets/bits_n_bobs/blockstates/weathered_metal_bracket.json 959bf2c7da267e39c791f1677fd7590048e6a3fc assets/bits_n_bobs/blockstates/weathered_metal_girder.json db93f0b6304e85777db8e210ec27877930cd94a5 assets/bits_n_bobs/blockstates/weathered_metal_girder_encased_shaft.json c0190afa39321b2f2c2ef4fc2365954911f2b89b assets/bits_n_bobs/blockstates/white_chair.json @@ -122,8 +123,8 @@ c0190afa39321b2f2c2ef4fc2365954911f2b89b assets/bits_n_bobs/blockstates/white_ch bbb308f65d8082773ca234d880ab5896c2390014 assets/bits_n_bobs/blockstates/yellow_chair.json 4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/yellow_large_nixie_tube.json 98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/yellow_nixie_board.json -9ce33cf13f515c5a2a8baacaa1378f7a448ce885 assets/bits_n_bobs/lang/en_ud.json -eda8148c5dfd6eae0d7808debb878cbea8fc2ae3 assets/bits_n_bobs/lang/en_us.json +bdfc548057f23c2857cf83852294c45b9a137452 assets/bits_n_bobs/lang/en_ud.json +ad7b7e932a531b91d51efdd41355d43e04bab750 assets/bits_n_bobs/lang/en_us.json dd3ce69870709f327e97fc59a8b18e1c5d5b95f8 assets/bits_n_bobs/models/block/andesite_tiles.json a99f4d460e7cf7d1d2b275317d29f3ea5262e484 assets/bits_n_bobs/models/block/andesite_tiles_wall_post.json ac0fde7943f06d74d97bf2fcbdb6d6d114fa4f1f assets/bits_n_bobs/models/block/andesite_tiles_wall_side.json @@ -152,6 +153,12 @@ f665f0a65074c59217187496e17d7db9b4ea12b2 assets/bits_n_bobs/models/block/asurine 1459244a083ef828b22ed1d94ccbf6dc0a727999 assets/bits_n_bobs/models/block/asurine_tile_stairs_inner_alternate.json 3bd343f41cbe03b165f61bfe455ab4e81c0a0474 assets/bits_n_bobs/models/block/asurine_tile_stairs_outer.json cfe2d153bc991fe967b4db54417064a797145068 assets/bits_n_bobs/models/block/asurine_tile_stairs_outer_alternate.json +2bf002775fd09a9c7fc468e322298c6bc23b5d6f assets/bits_n_bobs/models/block/bracket/cog/ground_weathered_metal.json +225f4eba5bb1470db146edd96986befd3289909a assets/bits_n_bobs/models/block/bracket/cog/wall_weathered_metal.json +1ea1006161c38f41c1c43b75fa1c60128245bb84 assets/bits_n_bobs/models/block/bracket/pipe/ground_weathered_metal.json +f48a202587f9680b4ee9dd0fae8387b050794366 assets/bits_n_bobs/models/block/bracket/pipe/wall_weathered_metal.json +288566a990871dd26827c8f0a8febcba221d324c assets/bits_n_bobs/models/block/bracket/shaft/ground_weathered_metal.json +87bb56a0dd5f6ae5c7ca28b6983ab3d1d4a6c604 assets/bits_n_bobs/models/block/bracket/shaft/wall_weathered_metal.json f25aa3b67fdb7ce7fc24cda6aebaa6aa9c70b808 assets/bits_n_bobs/models/block/calcite_tiles.json a17c377ddce5c607a32486f86e477a346816c06a assets/bits_n_bobs/models/block/calcite_tiles_wall_post.json 91520b65e68da89290cf93737d20a4f22ddef53c assets/bits_n_bobs/models/block/calcite_tiles_wall_side.json @@ -530,6 +537,7 @@ aa2550a77b6cc70b43bad1a58ba7b95263896b36 assets/bits_n_bobs/models/item/veridium 189c456a09b7066b4da6f4c5de9ebf3984ad8099 assets/bits_n_bobs/models/item/veridium_tile_stairs.json 45fa7d83ac6838c96ecb6c4b7bcd545c40096eb8 assets/bits_n_bobs/models/item/veridium_tile_wall.json 68776d40fde2d21196c2624efac34cef4cf937ec assets/bits_n_bobs/models/item/weathered_girder_strut.json +b918cb8c78460b774c757725866a3bc9b64d72fc assets/bits_n_bobs/models/item/weathered_metal_bracket.json a756ec3f1d1ff09079622e814c629a112bbbc14f assets/bits_n_bobs/models/item/weathered_metal_girder.json f83d44615309b843be16b656e17b472a3dc22019 assets/bits_n_bobs/models/item/white_chair.json 630417845e5676a5c4a82321f9f31fc31409420e assets/bits_n_bobs/models/item/yellow_chair.json @@ -792,6 +800,7 @@ fcfa590a9d9bf4299eee38f8fe3210c684e3800b data/bits_n_bobs/loot_table/blocks/veri 86c1c77bdc92b9a82e72afeb59aef8c8be9b5697 data/bits_n_bobs/loot_table/blocks/veridium_tile_stairs.json 1c389bc9eb467d20d237adcff6bef56c5eafe763 data/bits_n_bobs/loot_table/blocks/veridium_tile_wall.json 70b6c653700ccc77e21f4dd0ee9ee2d4420ce04e data/bits_n_bobs/loot_table/blocks/weathered_girder_strut.json +fdb5e19b652af66f9f0faf3cde44886af1640197 data/bits_n_bobs/loot_table/blocks/weathered_metal_bracket.json 4ce5a2bda6bcd26e2231503f09025dd802c21b22 data/bits_n_bobs/loot_table/blocks/weathered_metal_girder.json 24260b7ebccbe1ec3299331874812af63e1e7c76 data/bits_n_bobs/loot_table/blocks/weathered_metal_girder_encased_shaft.json 5257aa8bf4427d5f9e41bc6d9f406f5b705b6b4e data/bits_n_bobs/loot_table/blocks/white_chair.json @@ -979,6 +988,7 @@ e01bef21e13d8b0631e5c142ea4d5b52f8969f04 data/create/recipe/scorchia_tile_slab_r 06a34b592f1b52713d7169f76edda32173980e4a data/create/recipe/veridium_tile_slab_recycling.json 033f75b4c401f8616e1d2b8a61c46886cd9a5bc2 data/create/tags/block/brittle.json 2bf76cfbb67f7741a0bee5bb4d46b1374e35c999 data/create/tags/block/safe_nbt.json +749d9923fac41fc2f812c706568223fd1d1b251f data/create/tags/item/invalid_for_track_paving.json b2746ad5fb6e8a9bd43915d905fd9a3c218c3c63 data/create/tags/item/stone_types/andesite.json 82481f615fec3a1f1dc8e14a2d59c8a56ce7ec28 data/create/tags/item/stone_types/asurine.json d44460e748a7bd8eca3fdc8aee0be3940826edce data/create/tags/item/stone_types/calcite.json @@ -996,7 +1006,7 @@ f1f656352662478775cd9db2d1ca8f7aac574145 data/create/tags/item/stone_types/verid 1a62100f1b509d1f48d00fcd9b3a518ef390899a data/c/tags/entity_type/teleporting_not_supported.json 033f75b4c401f8616e1d2b8a61c46886cd9a5bc2 data/minecraft/tags/block/climbable.json 4b932cfa2a8f1589fce3718e707e02ed46c02c31 data/minecraft/tags/block/mineable/axe.json -b10a7080fd690e3858c59e3aec89092b5291aeb0 data/minecraft/tags/block/mineable/pickaxe.json +c07f41c02e783944a9e061956fa2c1f4edb41b64 data/minecraft/tags/block/mineable/pickaxe.json ed62c06140a0397feee5c79128d399c64719a198 data/minecraft/tags/block/slabs.json 10c05d7d5af60bb17cc6d8618bd4354ba3dd741a data/minecraft/tags/block/stairs.json b8e4b52b0eaeafeb7c3642ce0fe41d29e6b0dbb0 data/minecraft/tags/block/walls.json diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/weathered_metal_bracket.json b/src/generated/resources/assets/bits_n_bobs/blockstates/weathered_metal_bracket.json new file mode 100644 index 00000000..aa78d82c --- /dev/null +++ b/src/generated/resources/assets/bits_n_bobs/blockstates/weathered_metal_bracket.json @@ -0,0 +1,154 @@ +{ + "variants": { + "axis_along_first=false,facing=down,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/ground_weathered_metal", + "x": 180 + }, + "axis_along_first=false,facing=down,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/ground_weathered_metal", + "x": 180 + }, + "axis_along_first=false,facing=down,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/ground_weathered_metal", + "x": 180 + }, + "axis_along_first=false,facing=east,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal" + }, + "axis_along_first=false,facing=east,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal" + }, + "axis_along_first=false,facing=east,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal" + }, + "axis_along_first=false,facing=north,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", + "x": 90, + "y": 270 + }, + "axis_along_first=false,facing=north,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", + "x": 90, + "y": 270 + }, + "axis_along_first=false,facing=north,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", + "x": 90, + "y": 270 + }, + "axis_along_first=false,facing=south,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", + "x": 90, + "y": 90 + }, + "axis_along_first=false,facing=south,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", + "x": 90, + "y": 90 + }, + "axis_along_first=false,facing=south,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", + "x": 90, + "y": 90 + }, + "axis_along_first=false,facing=up,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/ground_weathered_metal" + }, + "axis_along_first=false,facing=up,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/ground_weathered_metal" + }, + "axis_along_first=false,facing=up,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/ground_weathered_metal" + }, + "axis_along_first=false,facing=west,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", + "y": 180 + }, + "axis_along_first=false,facing=west,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", + "y": 180 + }, + "axis_along_first=false,facing=west,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", + "y": 180 + }, + "axis_along_first=true,facing=down,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/ground_weathered_metal", + "x": 180, + "y": 90 + }, + "axis_along_first=true,facing=down,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/ground_weathered_metal", + "x": 180, + "y": 90 + }, + "axis_along_first=true,facing=down,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/ground_weathered_metal", + "x": 180, + "y": 90 + }, + "axis_along_first=true,facing=east,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", + "x": 90 + }, + "axis_along_first=true,facing=east,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", + "x": 90 + }, + "axis_along_first=true,facing=east,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", + "x": 90 + }, + "axis_along_first=true,facing=north,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", + "y": 270 + }, + "axis_along_first=true,facing=north,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", + "y": 270 + }, + "axis_along_first=true,facing=north,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", + "y": 270 + }, + "axis_along_first=true,facing=south,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", + "y": 90 + }, + "axis_along_first=true,facing=south,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", + "y": 90 + }, + "axis_along_first=true,facing=south,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", + "y": 90 + }, + "axis_along_first=true,facing=up,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/ground_weathered_metal", + "y": 90 + }, + "axis_along_first=true,facing=up,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/ground_weathered_metal", + "y": 90 + }, + "axis_along_first=true,facing=up,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/ground_weathered_metal", + "y": 90 + }, + "axis_along_first=true,facing=west,type=cog": { + "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", + "x": 90, + "y": 180 + }, + "axis_along_first=true,facing=west,type=pipe": { + "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", + "x": 90, + "y": 180 + }, + "axis_along_first=true,facing=west,type=shaft": { + "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", + "x": 90, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/lang/en_ud.json b/src/generated/resources/assets/bits_n_bobs/lang/en_ud.json index a15e209d..b0491060 100644 --- a/src/generated/resources/assets/bits_n_bobs/lang/en_ud.json +++ b/src/generated/resources/assets/bits_n_bobs/lang/en_ud.json @@ -135,6 +135,8 @@ "block.bits_n_bobs.veridium_tile_wall": "ןןɐM ǝןı⟘ ɯnıpıɹǝΛ", "block.bits_n_bobs.veridium_tiles": "sǝןı⟘ ɯnıpıɹǝΛ", "block.bits_n_bobs.weathered_girder_strut": "ʇnɹʇS ɹǝpɹı⅁ pǝɹǝɥʇɐǝM", + "block.bits_n_bobs.weathered_metal_bracket": "ʇǝʞɔɐɹᗺ ןɐʇǝW pǝɹǝɥʇɐǝM", + "block.bits_n_bobs.weathered_metal_bracket.tooltip.summary": "˙ʇuǝɯǝɔɹoɟuıǝɹ ɟo ʇıq ʎʇsnɹ puɐ pןo uɐ ɥʇıʍ ‾sǝdıԀ‾ puɐ ‾sןǝǝɥʍboƆ 'sʇɟɐɥS‾ ɹnoʎ ‾ǝʇɐɹoɔǝᗡ‾", "block.bits_n_bobs.weathered_metal_girder": "ɹǝpɹı⅁ ןɐʇǝW pǝɹǝɥʇɐǝM", "block.bits_n_bobs.weathered_metal_girder_encased_shaft": "ʇɟɐɥS pǝsɐɔuƎ ɹǝpɹı⅁ ןɐʇǝW pǝɹǝɥʇɐǝM", "block.bits_n_bobs.white_chair": "ɹıɐɥƆ ǝʇıɥM", diff --git a/src/generated/resources/assets/bits_n_bobs/lang/en_us.json b/src/generated/resources/assets/bits_n_bobs/lang/en_us.json index 47a0b34d..14780d5f 100644 --- a/src/generated/resources/assets/bits_n_bobs/lang/en_us.json +++ b/src/generated/resources/assets/bits_n_bobs/lang/en_us.json @@ -135,6 +135,8 @@ "block.bits_n_bobs.veridium_tile_wall": "Veridium Tile Wall", "block.bits_n_bobs.veridium_tiles": "Veridium Tiles", "block.bits_n_bobs.weathered_girder_strut": "Weathered Girder Strut", + "block.bits_n_bobs.weathered_metal_bracket": "Weathered Metal Bracket", + "block.bits_n_bobs.weathered_metal_bracket.tooltip.summary": "_Decorate_ your _Shafts, Cogwheels_ and _Pipes_ with an old and rusty bit of reinforcement.", "block.bits_n_bobs.weathered_metal_girder": "Weathered Metal Girder", "block.bits_n_bobs.weathered_metal_girder_encased_shaft": "Weathered Metal Girder Encased Shaft", "block.bits_n_bobs.white_chair": "White Chair", diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/ground_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/ground_weathered_metal.json new file mode 100644 index 00000000..4cc8ca28 --- /dev/null +++ b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/ground_weathered_metal.json @@ -0,0 +1,7 @@ +{ + "parent": "bits_n_bobs:block/bracket/cog/ground", + "textures": { + "bracket": "bits_n_bobs:block/bracket_weathered_metal", + "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/wall_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/wall_weathered_metal.json new file mode 100644 index 00000000..3397ca9c --- /dev/null +++ b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/wall_weathered_metal.json @@ -0,0 +1,7 @@ +{ + "parent": "bits_n_bobs:block/bracket/cog/wall", + "textures": { + "bracket": "bits_n_bobs:block/bracket_weathered_metal", + "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground_weathered_metal.json new file mode 100644 index 00000000..35e264b8 --- /dev/null +++ b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground_weathered_metal.json @@ -0,0 +1,7 @@ +{ + "parent": "bits_n_bobs:block/bracket/pipe/ground", + "textures": { + "bracket": "bits_n_bobs:block/bracket_weathered_metal", + "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall_weathered_metal.json new file mode 100644 index 00000000..643aaffa --- /dev/null +++ b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall_weathered_metal.json @@ -0,0 +1,7 @@ +{ + "parent": "bits_n_bobs:block/bracket/pipe/wall", + "textures": { + "bracket": "bits_n_bobs:block/bracket_weathered_metal", + "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground_weathered_metal.json new file mode 100644 index 00000000..aad263f2 --- /dev/null +++ b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground_weathered_metal.json @@ -0,0 +1,7 @@ +{ + "parent": "bits_n_bobs:block/bracket/shaft/ground", + "textures": { + "bracket": "bits_n_bobs:block/bracket_weathered_metal", + "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall_weathered_metal.json new file mode 100644 index 00000000..1d5b4b75 --- /dev/null +++ b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall_weathered_metal.json @@ -0,0 +1,7 @@ +{ + "parent": "bits_n_bobs:block/bracket/shaft/wall", + "textures": { + "bracket": "bits_n_bobs:block/bracket_weathered_metal", + "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/item/weathered_metal_bracket.json b/src/generated/resources/assets/bits_n_bobs/models/item/weathered_metal_bracket.json new file mode 100644 index 00000000..366b0aae --- /dev/null +++ b/src/generated/resources/assets/bits_n_bobs/models/item/weathered_metal_bracket.json @@ -0,0 +1,7 @@ +{ + "parent": "bits_n_bobs:block/bracket/item", + "textures": { + "bracket": "bits_n_bobs:block/bracket_weathered_metal", + "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" + } +} \ No newline at end of file diff --git a/src/generated/resources/data/bits_n_bobs/loot_table/blocks/weathered_metal_bracket.json b/src/generated/resources/data/bits_n_bobs/loot_table/blocks/weathered_metal_bracket.json new file mode 100644 index 00000000..f43a2209 --- /dev/null +++ b/src/generated/resources/data/bits_n_bobs/loot_table/blocks/weathered_metal_bracket.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "bits_n_bobs:weathered_metal_bracket" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "bits_n_bobs:blocks/weathered_metal_bracket" +} \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/item/invalid_for_track_paving.json b/src/generated/resources/data/create/tags/item/invalid_for_track_paving.json new file mode 100644 index 00000000..3fde06bd --- /dev/null +++ b/src/generated/resources/data/create/tags/item/invalid_for_track_paving.json @@ -0,0 +1,5 @@ +{ + "values": [ + "bits_n_bobs:weathered_metal_bracket" + ] +} \ No newline at end of file diff --git a/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json b/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json index a98fc816..4ba9cfa7 100644 --- a/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json +++ b/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json @@ -49,6 +49,7 @@ "bits_n_bobs:large_flanged_cogwheel_chain", "bits_n_bobs:small_flanged_cogwheel", "bits_n_bobs:large_flanged_cogwheel", + "bits_n_bobs:weathered_metal_bracket", "bits_n_bobs:granite_tiles", "bits_n_bobs:granite_tile_stairs", "bits_n_bobs:granite_tile_slab", diff --git a/src/main/java/com/kipti/bnb/registry/BnbBlocks.java b/src/main/java/com/kipti/bnb/registry/BnbBlocks.java index fea1b146..26f6561a 100644 --- a/src/main/java/com/kipti/bnb/registry/BnbBlocks.java +++ b/src/main/java/com/kipti/bnb/registry/BnbBlocks.java @@ -31,6 +31,9 @@ import com.simibubi.create.content.contraptions.actors.seat.SeatInteractionBehaviour; import com.simibubi.create.content.contraptions.actors.seat.SeatMovementBehaviour; import com.simibubi.create.content.contraptions.pulley.PulleyBlock; +import com.simibubi.create.content.decoration.bracket.BracketBlock; +import com.simibubi.create.content.decoration.bracket.BracketBlockItem; +import com.simibubi.create.content.decoration.bracket.BracketGenerator; import com.simibubi.create.foundation.block.DyedBlockList; import com.simibubi.create.foundation.data.AssetLookup; import com.simibubi.create.foundation.data.BlockStateGen; @@ -403,6 +406,15 @@ public static NonNullFunction WEATHERED_METAL_BRACKET = REGISTRATE.block("weathered_metal_bracket", BracketBlock::new) + .blockstate(new BracketGenerator("weathered_metal")::generate) + .properties(p -> p.sound(SoundType.NETHERITE_BLOCK)) + .transform(pickaxeOnly()) + .item(BracketBlockItem::new) + .tag(AllTags.AllItemTags.INVALID_FOR_TRACK_PAVING.tag) + .transform(BracketGenerator.itemModel("weathered_metal")) + .register(); + public static void register() { } diff --git a/src/main/java/com/kipti/bnb/registry/BnbLangEntries.java b/src/main/java/com/kipti/bnb/registry/BnbLangEntries.java index 585974dd..72a63721 100644 --- a/src/main/java/com/kipti/bnb/registry/BnbLangEntries.java +++ b/src/main/java/com/kipti/bnb/registry/BnbLangEntries.java @@ -53,6 +53,8 @@ public static void register() { "block.bits_n_bobs.chair.tooltip.condition1", "Right click on Chair", "block.bits_n_bobs.chair.tooltip.behaviour1", "Sits the player on the _Chair_. Press L-shift to leave the _Chair_.", + "block.bits_n_bobs.weathered_metal_bracket.tooltip.summary", "_Decorate_ your _Shafts, Cogwheels_ and _Pipes_ with an old and rusty bit of reinforcement.", + //Flywheel Bearing Tooltip "tooltip.bits_n_bobs.flywheel_bearing.flywheel_stats", "Flywheel Stats:", "tooltip.bits_n_bobs.flywheel_bearing.angular_mass", "Angular Mass:", diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/ground.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/ground.json new file mode 100644 index 00000000..cb04e2b3 --- /dev/null +++ b/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/ground.json @@ -0,0 +1,209 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "4": "#plate", + "5": "#bracket", + "particle": "#plate" + }, + "elements": [ + { + "from": [11.9, 3, 2], + "to": [14, 6, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, -24]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [4.1, 3, 2], + "to": [11.9, 13, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 4.5, -24]}, + "faces": { + "north": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, + "east": {"uv": [7, 0, 8, 10], "texture": "#5"}, + "south": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, + "west": {"uv": [7, 0, 8, 10], "texture": "#5"}, + "up": {"uv": [8, 6, 16, 10], "texture": "#5"} + } + }, + { + "from": [2, 3, 2], + "to": [4.1, 6, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 4.5, -24]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [2, 10, 2], + "to": [4.1, 13, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 11.5, -24]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [12.5, 6, 3.5], + "to": [13.5, 14, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [20, 14, -16]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#4"} + } + }, + { + "from": [11.9, 10, 2], + "to": [14, 13, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 11.5, -24]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.5, 6, 3.5], + "to": [3.5, 14, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, -16]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#4"} + } + }, + { + "from": [11.9, 3, 10], + "to": [14, 6, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, -16]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [4.1, 3, 10], + "to": [11.9, 13, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 4.5, -16]}, + "faces": { + "north": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, + "east": {"uv": [7, 0, 8, 10], "texture": "#5"}, + "south": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, + "west": {"uv": [7, 0, 8, 10], "texture": "#5"}, + "up": {"uv": [8, 6, 16, 10], "texture": "#5"} + } + }, + { + "from": [2, 3, 10], + "to": [4.1, 6, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 4.5, -16]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [2, 10, 10], + "to": [4.1, 13, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 11.5, -16]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [12.5, 6, 11.5], + "to": [13.5, 14, 12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [20, 14, -8]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#4"} + } + }, + { + "from": [11.9, 10, 10], + "to": [14, 13, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 11.5, -16]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.5, 6, 11.5], + "to": [3.5, 14, 12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, -8]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#4"} + } + }, + { + "from": [1, 0, 1], + "to": [15, 3, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1.5, 8]}, + "faces": { + "north": {"uv": [0, 10, 14, 13], "texture": "#5"}, + "east": {"uv": [0, 13, 5, 16], "rotation": 180, "texture": "#5"}, + "south": {"uv": [0, 10, 14, 13], "texture": "#5"}, + "west": {"uv": [0, 13, 5, 16], "texture": "#5"}, + "up": {"uv": [9, 2, 14, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [9, 2, 14, 16], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [1, 0, 10], + "to": [15, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 1.5, 8]}, + "faces": { + "north": {"uv": [0, 10, 14, 13], "texture": "#5"}, + "east": {"uv": [0, 13, 5, 16], "texture": "#5"}, + "south": {"uv": [0, 10, 14, 13], "texture": "#5"}, + "west": {"uv": [0, 13, 5, 16], "rotation": 180, "texture": "#5"}, + "up": {"uv": [9, 2, 14, 16], "rotation": 270, "texture": "#4"}, + "down": {"uv": [9, 2, 14, 16], "rotation": 270, "texture": "#4"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/wall.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/wall.json new file mode 100644 index 00000000..46a608c9 --- /dev/null +++ b/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/wall.json @@ -0,0 +1,206 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "texture_size": [32, 32], + "textures": { + "4": "#plate", + "5": "#bracket", + "particle": "#plate" + }, + "elements": [ + { + "from": [3, 2, 2], + "to": [6, 4.1, 6], + "faces": { + "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 4.1, 2], + "to": [13, 11.9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 10], "rotation": 90, "texture": "#5"}, + "east": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"}, + "south": {"uv": [0, 0, 8, 10], "rotation": 270, "texture": "#5"}, + "up": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"}, + "down": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 11.9, 2], + "to": [6, 14, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [10, 11.9, 2], + "to": [13, 14, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [6, 2.5, 3.5], + "to": [14, 3.5, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 8]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, + "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, + "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [10, 2, 2], + "to": [13, 4.1, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [6, 12.5, 3.5], + "to": [14, 13.5, 4.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, + "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, + "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [3, 2, 10], + "to": [6, 4.1, 14], + "faces": { + "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 4.1, 10], + "to": [13, 11.9, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 10], "rotation": 90, "texture": "#5"}, + "east": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"}, + "south": {"uv": [0, 0, 8, 10], "rotation": 270, "texture": "#5"}, + "up": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"}, + "down": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 11.9, 10], + "to": [6, 14, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [10, 11.9, 10], + "to": [13, 14, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [6, 2.5, 11.5], + "to": [14, 3.5, 12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 8]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, + "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, + "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [10, 2, 10], + "to": [13, 4.1, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [6, 12.5, 11.5], + "to": [14, 13.5, 12.5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, + "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, + "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [0, 1, 1], + "to": [3, 15, 6], + "faces": { + "north": {"uv": [0, 10, 14, 13], "rotation": 270, "texture": "#5"}, + "east": {"uv": [9, 2, 14, 16], "rotation": 180, "texture": "#4"}, + "south": {"uv": [0, 10, 14, 13], "rotation": 90, "texture": "#5"}, + "west": {"uv": [9, 2, 14, 16], "rotation": 180, "texture": "#4"}, + "up": {"uv": [0, 13, 5, 16], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0, 13, 5, 16], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [0, 1, 10], + "to": [3, 15, 15], + "faces": { + "north": {"uv": [0, 10, 14, 13], "rotation": 270, "texture": "#5"}, + "east": {"uv": [9, 2, 14, 16], "texture": "#4"}, + "south": {"uv": [0, 10, 14, 13], "rotation": 90, "texture": "#5"}, + "west": {"uv": [9, 2, 14, 16], "texture": "#4"}, + "up": {"uv": [0, 13, 5, 16], "rotation": 270, "texture": "#5"}, + "down": {"uv": [0, 13, 5, 16], "rotation": 90, "texture": "#5"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/item.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/item.json new file mode 100644 index 00000000..7026004e --- /dev/null +++ b/src/main/resources/assets/bits_n_bobs/models/block/bracket/item.json @@ -0,0 +1,110 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "4": "#plate", + "5": "#bracket", + "particle": "#plate" + }, + "elements": [ + { + "from": [1, 0, 1], + "to": [15, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 1.5]}, + "faces": { + "north": {"uv": [0, 10, 14, 13], "texture": "#5"}, + "east": {"uv": [0, 13, 14, 16], "texture": "#5"}, + "south": {"uv": [0, 10, 14, 13], "texture": "#5"}, + "west": {"uv": [0, 13, 14, 16], "texture": "#5"}, + "up": {"uv": [0, 2, 14, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [0, 2, 14, 16], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [11.9, 3, 6], + "to": [14, 6, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [4.1, 3, 6], + "to": [11.9, 13, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 4.5, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, + "east": {"uv": [7, 0, 8, 10], "texture": "#5"}, + "south": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, + "west": {"uv": [7, 0, 8, 10], "texture": "#5"}, + "up": {"uv": [8, 6, 16, 10], "texture": "#5"} + } + }, + { + "from": [2, 3, 6], + "to": [4.1, 6, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 4.5, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [2, 10, 6], + "to": [4.1, 13, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 11.5, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [12.5, 6, 7.5], + "to": [13.5, 14, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [20, 14, 16]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#4"} + } + }, + { + "from": [11.9, 10, 6], + "to": [14, 13, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 11.5, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.5, 6, 7.5], + "to": [3.5, 14, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, 16]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#4"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground.json new file mode 100644 index 00000000..6ba942bb --- /dev/null +++ b/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground.json @@ -0,0 +1,119 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "4": "#plate", + "5": "#bracket", + "particle": "#plate" + }, + "elements": [ + { + "from": [1, 0, 1], + "to": [15, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 1.5]}, + "faces": { + "north": {"uv": [0, 10, 14, 13], "texture": "#5"}, + "east": {"uv": [0, 13, 14, 16], "texture": "#5"}, + "south": {"uv": [0, 10, 14, 13], "texture": "#5"}, + "west": {"uv": [0, 13, 14, 16], "texture": "#5"}, + "up": {"uv": [0, 2, 14, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [0, 2, 14, 16], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [11.9, 3, 6], + "to": [14, 6, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [4.1, 11, 6], + "to": [11.9, 13, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 4.5, 8]}, + "faces": { + "north": {"uv": [8, 8, 16, 10], "rotation": 180, "texture": "#5"}, + "south": {"uv": [8, 6, 16, 8], "rotation": 180, "texture": "#5"}, + "up": {"uv": [8, 6, 16, 10], "texture": "#5"}, + "down": {"uv": [8, 6, 16, 10], "texture": "#5"} + } + }, + { + "from": [4.1, 3, 6], + "to": [11.9, 5, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [10, -3.5, 8]}, + "faces": { + "north": {"uv": [8, 8, 16, 10], "rotation": 180, "texture": "#5"}, + "south": {"uv": [8, 6, 16, 8], "rotation": 180, "texture": "#5"}, + "up": {"uv": [8, 6, 16, 10], "texture": "#5"} + } + }, + { + "from": [2, 3, 6], + "to": [4.1, 6, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 4.5, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [2, 10, 6], + "to": [4.1, 13, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 11.5, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [12.5, 6, 7.5], + "to": [13.5, 14, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [20, 14, 16]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#4"} + } + }, + { + "from": [11.9, 10, 6], + "to": [14, 13, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 11.5, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.5, 6, 7.5], + "to": [3.5, 14, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, 16]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#4"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall.json new file mode 100644 index 00000000..99e57988 --- /dev/null +++ b/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall.json @@ -0,0 +1,110 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "4": "#plate", + "5": "#bracket", + "particle": "#plate" + }, + "elements": [ + { + "from": [0, 1, 1], + "to": [3, 15, 15], + "faces": { + "north": {"uv": [0, 10, 14, 13], "rotation": 270, "texture": "#5"}, + "east": {"uv": [0, 2, 14, 16], "rotation": 180, "texture": "#4"}, + "south": {"uv": [0, 10, 14, 13], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0, 2, 14, 16], "texture": "#4"}, + "up": {"uv": [0, 13, 14, 16], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0, 13, 14, 16], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 2, 6], + "to": [6, 4.1, 10], + "faces": { + "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [11, 4.1, 6], + "to": [13, 11.9, 10], + "faces": { + "north": {"uv": [8, 8, 16, 10], "rotation": 90, "texture": "#5"}, + "east": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"}, + "south": {"uv": [8, 6, 16, 8], "rotation": 270, "texture": "#5"}, + "west": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 4.1, 6], + "to": [5, 11.9, 10], + "faces": { + "north": {"uv": [8, 8, 16, 10], "rotation": 90, "texture": "#5"}, + "east": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"}, + "south": {"uv": [8, 6, 16, 8], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [3, 11.9, 6], + "to": [6, 14, 10], + "faces": { + "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [10, 11.9, 6], + "to": [13, 14, 10], + "faces": { + "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [6, 2.5, 7.5], + "to": [14, 3.5, 8.5], + "faces": { + "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, + "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, + "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [10, 2, 6], + "to": [13, 4.1, 10], + "faces": { + "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [6, 12.5, 7.5], + "to": [14, 13.5, 8.5], + "faces": { + "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, + "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, + "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground.json new file mode 100644 index 00000000..7026004e --- /dev/null +++ b/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground.json @@ -0,0 +1,110 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "4": "#plate", + "5": "#bracket", + "particle": "#plate" + }, + "elements": [ + { + "from": [1, 0, 1], + "to": [15, 3, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 1.5]}, + "faces": { + "north": {"uv": [0, 10, 14, 13], "texture": "#5"}, + "east": {"uv": [0, 13, 14, 16], "texture": "#5"}, + "south": {"uv": [0, 10, 14, 13], "texture": "#5"}, + "west": {"uv": [0, 13, 14, 16], "texture": "#5"}, + "up": {"uv": [0, 2, 14, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [0, 2, 14, 16], "rotation": 270, "texture": "#4"} + } + }, + { + "from": [11.9, 3, 6], + "to": [14, 6, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [4.1, 3, 6], + "to": [11.9, 13, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 4.5, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, + "east": {"uv": [7, 0, 8, 10], "texture": "#5"}, + "south": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, + "west": {"uv": [7, 0, 8, 10], "texture": "#5"}, + "up": {"uv": [8, 6, 16, 10], "texture": "#5"} + } + }, + { + "from": [2, 3, 6], + "to": [4.1, 6, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 4.5, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [2, 10, 6], + "to": [4.1, 13, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [3, 11.5, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} + } + }, + { + "from": [12.5, 6, 7.5], + "to": [13.5, 14, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [20, 14, 16]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#4"} + } + }, + { + "from": [11.9, 10, 6], + "to": [14, 13, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [18, 11.5, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, + "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, + "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, + "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [2.5, 6, 7.5], + "to": [3.5, 14, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, 16]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, + "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, + "down": {"uv": [0, 0, 0, 0], "texture": "#4"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall.json new file mode 100644 index 00000000..6fabc5b7 --- /dev/null +++ b/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall.json @@ -0,0 +1,110 @@ +{ + "credit": "Made with Blockbench", + "parent": "block/block", + "textures": { + "4": "#plate", + "5": "#bracket", + "particle": "#plate" + }, + "elements": [ + { + "from": [0, 1, 1], + "to": [3, 15, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [0, 14.5, 1.5]}, + "faces": { + "north": {"uv": [0, 10, 14, 13], "rotation": 270, "texture": "#5"}, + "east": {"uv": [0, 2, 14, 16], "rotation": 180, "texture": "#4"}, + "south": {"uv": [0, 10, 14, 13], "rotation": 90, "texture": "#5"}, + "west": {"uv": [0, 2, 14, 16], "texture": "#4"}, + "up": {"uv": [0, 13, 14, 16], "rotation": 90, "texture": "#5"}, + "down": {"uv": [0, 13, 14, 16], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 2, 6], + "to": [6, 4.1, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 8, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 4.1, 6], + "to": [13, 11.9, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 6, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 10], "rotation": 90, "texture": "#5"}, + "east": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"}, + "south": {"uv": [0, 0, 8, 10], "rotation": 270, "texture": "#5"}, + "up": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"}, + "down": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [3, 11.9, 6], + "to": [6, 14, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 13, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [10, 11.9, 6], + "to": [13, 14, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [11.5, 13, 8]}, + "faces": { + "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, + "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [6, 2.5, 7.5], + "to": [14, 3.5, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [14, -4, 16]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, + "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, + "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} + } + }, + { + "from": [10, 2, 6], + "to": [13, 4.1, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [11.5, -2, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, + "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, + "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, + "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} + } + }, + { + "from": [6, 12.5, 7.5], + "to": [14, 13.5, 8.5], + "rotation": {"angle": 0, "axis": "y", "origin": [14, 6, 16]}, + "faces": { + "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, + "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, + "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, + "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, + "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/textures/block/bracket_plate_weathered_metal.png b/src/main/resources/assets/bits_n_bobs/textures/block/bracket_plate_weathered_metal.png new file mode 100644 index 0000000000000000000000000000000000000000..33ed1a17262bcc51d28e57ee9ba8499e02e3fc27 GIT binary patch literal 491 zcmVPx$rAb6VR5*>rlR<9OFcgNrj2%0k;?c}>#0aQF7f7r)0$UbHY*?^j#}POgCt%MF zx@)BhX;9im6Ezv9al^vc$sqQ4jr-Qx(V$q=A(mX*%E}#dn(Zbq59qeby#=Z z0C+YlGdh@pa^7>>_dEtp>@6(nu*o&xz-%gx_Gda&kK*Vk#kP*BaeR9J zc96C(fp!i%+)+S!CFeR z5J`Mr2C?=YjpPq!Y+<MCD`Uc#-0Ju#0(U;o0d)0<&3-k0{>K hXj_{gjPx$!%0LzR5*=&lD%)+Fc8Ima#T^4Ob>QoqaOxhq*JygK&Eb)`bTHWWS|*}wp)<` z1!BaoJxG>B(stE>A}ygnZaR|p?%sRH;O_Ri2FR7hg^UGJ6ktrv{o*m;l?VYc2}r?Q zqyXeui7|Dj@b31yc1?4oS$z8u_y$$3+5Xw`xLN@)olF?bM)ald4ICI?Jd95aq9|bd zYs>R;=`UUW{^~7XKHt<1=wwPxjeByK@X}0f$IEKPT%?}zCR4~*cz-$`ycW6Alrc;> z0o(qBPr6__nRFyLAM&iUQyqO}-()Pjv=Cr48+qDo6WiL$#y7{ry@ge-nIf27zC(Wc z2*8sr8vYi%3jhs0aoUD6G)xpM18ob8Viv^=jRocn-JRC-gq`ldWekae@Zy7|uPcq{ z3!e|t(4PlYh}j>J!vtMvq9|bT@YQ~#pX;qRF4+{w*n%<%!}XyvZIdbQh2O$uYQL}O z3v^|5nf;NuNYH=nv@sB+XY7gt<0xP)PHXImzTmlc@E2x(^fJu;Nc83mfL&p0+F&ms zQSck>={twZ7%-N;j0L&U1d5J~@ap`369-l3WwqH{oR56|y=m|d*Ff~2afg_T00000 LNkvXXu0mjffbsMs literal 0 HcmV?d00001 From a2c8970a2ef5e95c844b1acf768ebf719c0ea7f8 Mon Sep 17 00:00:00 2001 From: Cake <65340665+cakeGit@users.noreply.github.com> Date: Sun, 4 Jan 2026 14:48:14 +0000 Subject: [PATCH 7/7] Revert "Weathered Bracket" --- build.gradle | 72 +++--- .../5049ae3bedad6534d1775911872e86abc07c482d | 18 +- .../blockstates/weathered_metal_bracket.json | 154 ------------- .../assets/bits_n_bobs/lang/en_ud.json | 2 - .../assets/bits_n_bobs/lang/en_us.json | 2 - .../bracket/cog/ground_weathered_metal.json | 7 - .../bracket/cog/wall_weathered_metal.json | 7 - .../bracket/pipe/ground_weathered_metal.json | 7 - .../bracket/pipe/wall_weathered_metal.json | 7 - .../bracket/shaft/ground_weathered_metal.json | 7 - .../bracket/shaft/wall_weathered_metal.json | 7 - .../models/item/weathered_metal_bracket.json | 7 - .../blocks/weathered_metal_bracket.json | 21 -- .../tags/item/invalid_for_track_paving.json | 5 - .../tags/block/mineable/pickaxe.json | 1 - .../com/kipti/bnb/registry/BnbBlocks.java | 12 - .../kipti/bnb/registry/BnbLangEntries.java | 2 - .../models/block/bracket/cog/ground.json | 209 ------------------ .../models/block/bracket/cog/wall.json | 206 ----------------- .../models/block/bracket/item.json | 110 --------- .../models/block/bracket/pipe/ground.json | 119 ---------- .../models/block/bracket/pipe/wall.json | 110 --------- .../models/block/bracket/shaft/ground.json | 110 --------- .../models/block/bracket/shaft/wall.json | 110 --------- .../block/bracket_plate_weathered_metal.png | Bin 491 -> 0 bytes .../block/bracket_weathered_metal.png | Bin 521 -> 0 bytes 26 files changed, 40 insertions(+), 1272 deletions(-) delete mode 100644 src/generated/resources/assets/bits_n_bobs/blockstates/weathered_metal_bracket.json delete mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/ground_weathered_metal.json delete mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/wall_weathered_metal.json delete mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground_weathered_metal.json delete mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall_weathered_metal.json delete mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground_weathered_metal.json delete mode 100644 src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall_weathered_metal.json delete mode 100644 src/generated/resources/assets/bits_n_bobs/models/item/weathered_metal_bracket.json delete mode 100644 src/generated/resources/data/bits_n_bobs/loot_table/blocks/weathered_metal_bracket.json delete mode 100644 src/generated/resources/data/create/tags/item/invalid_for_track_paving.json delete mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/ground.json delete mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/wall.json delete mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/item.json delete mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground.json delete mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall.json delete mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground.json delete mode 100644 src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall.json delete mode 100644 src/main/resources/assets/bits_n_bobs/textures/block/bracket_plate_weathered_metal.png delete mode 100644 src/main/resources/assets/bits_n_bobs/textures/block/bracket_weathered_metal.png diff --git a/build.gradle b/build.gradle index 26fefe56..56c2e1a0 100644 --- a/build.gradle +++ b/build.gradle @@ -244,39 +244,39 @@ def getRelevantChangelog(String version) { return log } -//publishMods { -// file = jar.archiveFile -// def changelogText = getRelevantChangelog(minecraft_version + "-" + mod_version) -// changelog = changelogText -// println("Using changelog:\n" + changelogText + "\n") -// type = STABLE -// modLoaders.add("neoforge") -// displayName = mod_name + " " + mod_version + " NeoForge " + minecraft_version -// -// curseforge { -// projectId = "1398383" -// projectSlug = "create-bits-n-bobs" -// accessToken = env.fetch("CURSEFORGE_TOKEN") -// minecraftVersions.add("1.21.1") -// requires("create") -// } -// modrinth { -// projectId = "T8bvmqVZ" -// accessToken = env.fetch("MODRINTH_TOKEN") -// minecraftVersions.add("1.21.1") -// requires("create") -// } -// -// discord { -// webhookUrl = env.fetch("DISCORD_WEBHOOK_URL") -// username = "bits n bober version bot" -// avatarUrl = "https://cataas.com/cat?width=500&height=500" -// content = """ -// # New Mod Release: ${getDisplayName().get()} -// ${changelogText} -// """.trim() -// style { -// look = "CLASSIC" -// } -// } -//} \ No newline at end of file +publishMods { + file = jar.archiveFile + def changelogText = getRelevantChangelog(minecraft_version + "-" + mod_version) + changelog = changelogText + println("Using changelog:\n" + changelogText + "\n") + type = STABLE + modLoaders.add("neoforge") + displayName = mod_name + " " + mod_version + " NeoForge " + minecraft_version + + curseforge { + projectId = "1398383" + projectSlug = "create-bits-n-bobs" + accessToken = env.fetch("CURSEFORGE_TOKEN") + minecraftVersions.add("1.21.1") + requires("create") + } + modrinth { + projectId = "T8bvmqVZ" + accessToken = env.fetch("MODRINTH_TOKEN") + minecraftVersions.add("1.21.1") + requires("create") + } + + discord { + webhookUrl = env.fetch("DISCORD_WEBHOOK_URL") + username = "bits n bober version bot" + avatarUrl = "https://cataas.com/cat?width=500&height=500" + content = """ + # New Mod Release: ${getDisplayName().get()} + ${changelogText} + """.trim() + style { + look = "CLASSIC" + } + } +} \ No newline at end of file diff --git a/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d b/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d index ed7c79f5..9af68cfd 100644 --- a/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d +++ b/src/generated/resources/.cache/5049ae3bedad6534d1775911872e86abc07c482d @@ -1,4 +1,4 @@ -// 1.21.1 2026-01-04T08:00:41.1109542 Registrate Provider for bits_n_bobs [Registries, Data Maps, Recipes, Advancements, Loot Tables, Tags (enchantments), Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), generic_server_provider, Blockstates, Item models, Lang (en_us/en_ud), generic_client_provider] +// 1.21.1 2026-01-03T18:53:14.8520103 Registrate Provider for bits_n_bobs [Registries, Data Maps, Recipes, Advancements, Loot Tables, Tags (enchantments), Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), generic_server_provider, Blockstates, Item models, Lang (en_us/en_ud), generic_client_provider] 55ef065722d329b3c054797cd63a36d59f1634a8 assets/bits_n_bobs/blockstates/andesite_tiles.json 8810b9385c4f0297369a2d35ef8435b216bae4bb assets/bits_n_bobs/blockstates/andesite_tile_slab.json 67a9c45ad788cd261f7b545e230d1d01bf3fd0d8 assets/bits_n_bobs/blockstates/andesite_tile_stairs.json @@ -114,7 +114,6 @@ a34ad7e7327d467d226f28acfc0d84129e0ad54f assets/bits_n_bobs/blockstates/veridium 93691f0669222dbf4b65d002f0c1991a8a10e2d5 assets/bits_n_bobs/blockstates/veridium_tile_stairs.json 4c17b1398c1f6ebed5d04ae858c1227afde2f7be assets/bits_n_bobs/blockstates/veridium_tile_wall.json fc576b4d7f9cd924c8c9970c1a4c6163255cb41f assets/bits_n_bobs/blockstates/weathered_girder_strut.json -46dfb43efa6da8b3a52250b450a8415605fa5265 assets/bits_n_bobs/blockstates/weathered_metal_bracket.json 959bf2c7da267e39c791f1677fd7590048e6a3fc assets/bits_n_bobs/blockstates/weathered_metal_girder.json db93f0b6304e85777db8e210ec27877930cd94a5 assets/bits_n_bobs/blockstates/weathered_metal_girder_encased_shaft.json c0190afa39321b2f2c2ef4fc2365954911f2b89b assets/bits_n_bobs/blockstates/white_chair.json @@ -123,8 +122,8 @@ c0190afa39321b2f2c2ef4fc2365954911f2b89b assets/bits_n_bobs/blockstates/white_ch bbb308f65d8082773ca234d880ab5896c2390014 assets/bits_n_bobs/blockstates/yellow_chair.json 4db90e28dfc8d1b622b3336685268b883059c3fb assets/bits_n_bobs/blockstates/yellow_large_nixie_tube.json 98c1742a3f1ee6f357a35cadd1559b1d5f6d364a assets/bits_n_bobs/blockstates/yellow_nixie_board.json -bdfc548057f23c2857cf83852294c45b9a137452 assets/bits_n_bobs/lang/en_ud.json -ad7b7e932a531b91d51efdd41355d43e04bab750 assets/bits_n_bobs/lang/en_us.json +9ce33cf13f515c5a2a8baacaa1378f7a448ce885 assets/bits_n_bobs/lang/en_ud.json +eda8148c5dfd6eae0d7808debb878cbea8fc2ae3 assets/bits_n_bobs/lang/en_us.json dd3ce69870709f327e97fc59a8b18e1c5d5b95f8 assets/bits_n_bobs/models/block/andesite_tiles.json a99f4d460e7cf7d1d2b275317d29f3ea5262e484 assets/bits_n_bobs/models/block/andesite_tiles_wall_post.json ac0fde7943f06d74d97bf2fcbdb6d6d114fa4f1f assets/bits_n_bobs/models/block/andesite_tiles_wall_side.json @@ -153,12 +152,6 @@ f665f0a65074c59217187496e17d7db9b4ea12b2 assets/bits_n_bobs/models/block/asurine 1459244a083ef828b22ed1d94ccbf6dc0a727999 assets/bits_n_bobs/models/block/asurine_tile_stairs_inner_alternate.json 3bd343f41cbe03b165f61bfe455ab4e81c0a0474 assets/bits_n_bobs/models/block/asurine_tile_stairs_outer.json cfe2d153bc991fe967b4db54417064a797145068 assets/bits_n_bobs/models/block/asurine_tile_stairs_outer_alternate.json -2bf002775fd09a9c7fc468e322298c6bc23b5d6f assets/bits_n_bobs/models/block/bracket/cog/ground_weathered_metal.json -225f4eba5bb1470db146edd96986befd3289909a assets/bits_n_bobs/models/block/bracket/cog/wall_weathered_metal.json -1ea1006161c38f41c1c43b75fa1c60128245bb84 assets/bits_n_bobs/models/block/bracket/pipe/ground_weathered_metal.json -f48a202587f9680b4ee9dd0fae8387b050794366 assets/bits_n_bobs/models/block/bracket/pipe/wall_weathered_metal.json -288566a990871dd26827c8f0a8febcba221d324c assets/bits_n_bobs/models/block/bracket/shaft/ground_weathered_metal.json -87bb56a0dd5f6ae5c7ca28b6983ab3d1d4a6c604 assets/bits_n_bobs/models/block/bracket/shaft/wall_weathered_metal.json f25aa3b67fdb7ce7fc24cda6aebaa6aa9c70b808 assets/bits_n_bobs/models/block/calcite_tiles.json a17c377ddce5c607a32486f86e477a346816c06a assets/bits_n_bobs/models/block/calcite_tiles_wall_post.json 91520b65e68da89290cf93737d20a4f22ddef53c assets/bits_n_bobs/models/block/calcite_tiles_wall_side.json @@ -537,7 +530,6 @@ aa2550a77b6cc70b43bad1a58ba7b95263896b36 assets/bits_n_bobs/models/item/veridium 189c456a09b7066b4da6f4c5de9ebf3984ad8099 assets/bits_n_bobs/models/item/veridium_tile_stairs.json 45fa7d83ac6838c96ecb6c4b7bcd545c40096eb8 assets/bits_n_bobs/models/item/veridium_tile_wall.json 68776d40fde2d21196c2624efac34cef4cf937ec assets/bits_n_bobs/models/item/weathered_girder_strut.json -b918cb8c78460b774c757725866a3bc9b64d72fc assets/bits_n_bobs/models/item/weathered_metal_bracket.json a756ec3f1d1ff09079622e814c629a112bbbc14f assets/bits_n_bobs/models/item/weathered_metal_girder.json f83d44615309b843be16b656e17b472a3dc22019 assets/bits_n_bobs/models/item/white_chair.json 630417845e5676a5c4a82321f9f31fc31409420e assets/bits_n_bobs/models/item/yellow_chair.json @@ -800,7 +792,6 @@ fcfa590a9d9bf4299eee38f8fe3210c684e3800b data/bits_n_bobs/loot_table/blocks/veri 86c1c77bdc92b9a82e72afeb59aef8c8be9b5697 data/bits_n_bobs/loot_table/blocks/veridium_tile_stairs.json 1c389bc9eb467d20d237adcff6bef56c5eafe763 data/bits_n_bobs/loot_table/blocks/veridium_tile_wall.json 70b6c653700ccc77e21f4dd0ee9ee2d4420ce04e data/bits_n_bobs/loot_table/blocks/weathered_girder_strut.json -fdb5e19b652af66f9f0faf3cde44886af1640197 data/bits_n_bobs/loot_table/blocks/weathered_metal_bracket.json 4ce5a2bda6bcd26e2231503f09025dd802c21b22 data/bits_n_bobs/loot_table/blocks/weathered_metal_girder.json 24260b7ebccbe1ec3299331874812af63e1e7c76 data/bits_n_bobs/loot_table/blocks/weathered_metal_girder_encased_shaft.json 5257aa8bf4427d5f9e41bc6d9f406f5b705b6b4e data/bits_n_bobs/loot_table/blocks/white_chair.json @@ -988,7 +979,6 @@ e01bef21e13d8b0631e5c142ea4d5b52f8969f04 data/create/recipe/scorchia_tile_slab_r 06a34b592f1b52713d7169f76edda32173980e4a data/create/recipe/veridium_tile_slab_recycling.json 033f75b4c401f8616e1d2b8a61c46886cd9a5bc2 data/create/tags/block/brittle.json 2bf76cfbb67f7741a0bee5bb4d46b1374e35c999 data/create/tags/block/safe_nbt.json -749d9923fac41fc2f812c706568223fd1d1b251f data/create/tags/item/invalid_for_track_paving.json b2746ad5fb6e8a9bd43915d905fd9a3c218c3c63 data/create/tags/item/stone_types/andesite.json 82481f615fec3a1f1dc8e14a2d59c8a56ce7ec28 data/create/tags/item/stone_types/asurine.json d44460e748a7bd8eca3fdc8aee0be3940826edce data/create/tags/item/stone_types/calcite.json @@ -1006,7 +996,7 @@ f1f656352662478775cd9db2d1ca8f7aac574145 data/create/tags/item/stone_types/verid 1a62100f1b509d1f48d00fcd9b3a518ef390899a data/c/tags/entity_type/teleporting_not_supported.json 033f75b4c401f8616e1d2b8a61c46886cd9a5bc2 data/minecraft/tags/block/climbable.json 4b932cfa2a8f1589fce3718e707e02ed46c02c31 data/minecraft/tags/block/mineable/axe.json -c07f41c02e783944a9e061956fa2c1f4edb41b64 data/minecraft/tags/block/mineable/pickaxe.json +b10a7080fd690e3858c59e3aec89092b5291aeb0 data/minecraft/tags/block/mineable/pickaxe.json ed62c06140a0397feee5c79128d399c64719a198 data/minecraft/tags/block/slabs.json 10c05d7d5af60bb17cc6d8618bd4354ba3dd741a data/minecraft/tags/block/stairs.json b8e4b52b0eaeafeb7c3642ce0fe41d29e6b0dbb0 data/minecraft/tags/block/walls.json diff --git a/src/generated/resources/assets/bits_n_bobs/blockstates/weathered_metal_bracket.json b/src/generated/resources/assets/bits_n_bobs/blockstates/weathered_metal_bracket.json deleted file mode 100644 index aa78d82c..00000000 --- a/src/generated/resources/assets/bits_n_bobs/blockstates/weathered_metal_bracket.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "variants": { - "axis_along_first=false,facing=down,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/ground_weathered_metal", - "x": 180 - }, - "axis_along_first=false,facing=down,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/ground_weathered_metal", - "x": 180 - }, - "axis_along_first=false,facing=down,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/ground_weathered_metal", - "x": 180 - }, - "axis_along_first=false,facing=east,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal" - }, - "axis_along_first=false,facing=east,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal" - }, - "axis_along_first=false,facing=east,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal" - }, - "axis_along_first=false,facing=north,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", - "x": 90, - "y": 270 - }, - "axis_along_first=false,facing=north,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", - "x": 90, - "y": 270 - }, - "axis_along_first=false,facing=north,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", - "x": 90, - "y": 270 - }, - "axis_along_first=false,facing=south,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", - "x": 90, - "y": 90 - }, - "axis_along_first=false,facing=south,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", - "x": 90, - "y": 90 - }, - "axis_along_first=false,facing=south,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", - "x": 90, - "y": 90 - }, - "axis_along_first=false,facing=up,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/ground_weathered_metal" - }, - "axis_along_first=false,facing=up,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/ground_weathered_metal" - }, - "axis_along_first=false,facing=up,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/ground_weathered_metal" - }, - "axis_along_first=false,facing=west,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", - "y": 180 - }, - "axis_along_first=false,facing=west,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", - "y": 180 - }, - "axis_along_first=false,facing=west,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", - "y": 180 - }, - "axis_along_first=true,facing=down,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/ground_weathered_metal", - "x": 180, - "y": 90 - }, - "axis_along_first=true,facing=down,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/ground_weathered_metal", - "x": 180, - "y": 90 - }, - "axis_along_first=true,facing=down,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/ground_weathered_metal", - "x": 180, - "y": 90 - }, - "axis_along_first=true,facing=east,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", - "x": 90 - }, - "axis_along_first=true,facing=east,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", - "x": 90 - }, - "axis_along_first=true,facing=east,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", - "x": 90 - }, - "axis_along_first=true,facing=north,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", - "y": 270 - }, - "axis_along_first=true,facing=north,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", - "y": 270 - }, - "axis_along_first=true,facing=north,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", - "y": 270 - }, - "axis_along_first=true,facing=south,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", - "y": 90 - }, - "axis_along_first=true,facing=south,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", - "y": 90 - }, - "axis_along_first=true,facing=south,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", - "y": 90 - }, - "axis_along_first=true,facing=up,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/ground_weathered_metal", - "y": 90 - }, - "axis_along_first=true,facing=up,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/ground_weathered_metal", - "y": 90 - }, - "axis_along_first=true,facing=up,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/ground_weathered_metal", - "y": 90 - }, - "axis_along_first=true,facing=west,type=cog": { - "model": "bits_n_bobs:block/bracket/cog/wall_weathered_metal", - "x": 90, - "y": 180 - }, - "axis_along_first=true,facing=west,type=pipe": { - "model": "bits_n_bobs:block/bracket/pipe/wall_weathered_metal", - "x": 90, - "y": 180 - }, - "axis_along_first=true,facing=west,type=shaft": { - "model": "bits_n_bobs:block/bracket/shaft/wall_weathered_metal", - "x": 90, - "y": 180 - } - } -} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/lang/en_ud.json b/src/generated/resources/assets/bits_n_bobs/lang/en_ud.json index b0491060..a15e209d 100644 --- a/src/generated/resources/assets/bits_n_bobs/lang/en_ud.json +++ b/src/generated/resources/assets/bits_n_bobs/lang/en_ud.json @@ -135,8 +135,6 @@ "block.bits_n_bobs.veridium_tile_wall": "ןןɐM ǝןı⟘ ɯnıpıɹǝΛ", "block.bits_n_bobs.veridium_tiles": "sǝןı⟘ ɯnıpıɹǝΛ", "block.bits_n_bobs.weathered_girder_strut": "ʇnɹʇS ɹǝpɹı⅁ pǝɹǝɥʇɐǝM", - "block.bits_n_bobs.weathered_metal_bracket": "ʇǝʞɔɐɹᗺ ןɐʇǝW pǝɹǝɥʇɐǝM", - "block.bits_n_bobs.weathered_metal_bracket.tooltip.summary": "˙ʇuǝɯǝɔɹoɟuıǝɹ ɟo ʇıq ʎʇsnɹ puɐ pןo uɐ ɥʇıʍ ‾sǝdıԀ‾ puɐ ‾sןǝǝɥʍboƆ 'sʇɟɐɥS‾ ɹnoʎ ‾ǝʇɐɹoɔǝᗡ‾", "block.bits_n_bobs.weathered_metal_girder": "ɹǝpɹı⅁ ןɐʇǝW pǝɹǝɥʇɐǝM", "block.bits_n_bobs.weathered_metal_girder_encased_shaft": "ʇɟɐɥS pǝsɐɔuƎ ɹǝpɹı⅁ ןɐʇǝW pǝɹǝɥʇɐǝM", "block.bits_n_bobs.white_chair": "ɹıɐɥƆ ǝʇıɥM", diff --git a/src/generated/resources/assets/bits_n_bobs/lang/en_us.json b/src/generated/resources/assets/bits_n_bobs/lang/en_us.json index 14780d5f..47a0b34d 100644 --- a/src/generated/resources/assets/bits_n_bobs/lang/en_us.json +++ b/src/generated/resources/assets/bits_n_bobs/lang/en_us.json @@ -135,8 +135,6 @@ "block.bits_n_bobs.veridium_tile_wall": "Veridium Tile Wall", "block.bits_n_bobs.veridium_tiles": "Veridium Tiles", "block.bits_n_bobs.weathered_girder_strut": "Weathered Girder Strut", - "block.bits_n_bobs.weathered_metal_bracket": "Weathered Metal Bracket", - "block.bits_n_bobs.weathered_metal_bracket.tooltip.summary": "_Decorate_ your _Shafts, Cogwheels_ and _Pipes_ with an old and rusty bit of reinforcement.", "block.bits_n_bobs.weathered_metal_girder": "Weathered Metal Girder", "block.bits_n_bobs.weathered_metal_girder_encased_shaft": "Weathered Metal Girder Encased Shaft", "block.bits_n_bobs.white_chair": "White Chair", diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/ground_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/ground_weathered_metal.json deleted file mode 100644 index 4cc8ca28..00000000 --- a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/ground_weathered_metal.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "bits_n_bobs:block/bracket/cog/ground", - "textures": { - "bracket": "bits_n_bobs:block/bracket_weathered_metal", - "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" - } -} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/wall_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/wall_weathered_metal.json deleted file mode 100644 index 3397ca9c..00000000 --- a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/cog/wall_weathered_metal.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "bits_n_bobs:block/bracket/cog/wall", - "textures": { - "bracket": "bits_n_bobs:block/bracket_weathered_metal", - "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" - } -} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground_weathered_metal.json deleted file mode 100644 index 35e264b8..00000000 --- a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground_weathered_metal.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "bits_n_bobs:block/bracket/pipe/ground", - "textures": { - "bracket": "bits_n_bobs:block/bracket_weathered_metal", - "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" - } -} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall_weathered_metal.json deleted file mode 100644 index 643aaffa..00000000 --- a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall_weathered_metal.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "bits_n_bobs:block/bracket/pipe/wall", - "textures": { - "bracket": "bits_n_bobs:block/bracket_weathered_metal", - "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" - } -} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground_weathered_metal.json deleted file mode 100644 index aad263f2..00000000 --- a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground_weathered_metal.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "bits_n_bobs:block/bracket/shaft/ground", - "textures": { - "bracket": "bits_n_bobs:block/bracket_weathered_metal", - "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" - } -} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall_weathered_metal.json b/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall_weathered_metal.json deleted file mode 100644 index 1d5b4b75..00000000 --- a/src/generated/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall_weathered_metal.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "bits_n_bobs:block/bracket/shaft/wall", - "textures": { - "bracket": "bits_n_bobs:block/bracket_weathered_metal", - "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" - } -} \ No newline at end of file diff --git a/src/generated/resources/assets/bits_n_bobs/models/item/weathered_metal_bracket.json b/src/generated/resources/assets/bits_n_bobs/models/item/weathered_metal_bracket.json deleted file mode 100644 index 366b0aae..00000000 --- a/src/generated/resources/assets/bits_n_bobs/models/item/weathered_metal_bracket.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "bits_n_bobs:block/bracket/item", - "textures": { - "bracket": "bits_n_bobs:block/bracket_weathered_metal", - "plate": "bits_n_bobs:block/bracket_plate_weathered_metal" - } -} \ No newline at end of file diff --git a/src/generated/resources/data/bits_n_bobs/loot_table/blocks/weathered_metal_bracket.json b/src/generated/resources/data/bits_n_bobs/loot_table/blocks/weathered_metal_bracket.json deleted file mode 100644 index f43a2209..00000000 --- a/src/generated/resources/data/bits_n_bobs/loot_table/blocks/weathered_metal_bracket.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "bonus_rolls": 0.0, - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], - "entries": [ - { - "type": "minecraft:item", - "name": "bits_n_bobs:weathered_metal_bracket" - } - ], - "rolls": 1.0 - } - ], - "random_sequence": "bits_n_bobs:blocks/weathered_metal_bracket" -} \ No newline at end of file diff --git a/src/generated/resources/data/create/tags/item/invalid_for_track_paving.json b/src/generated/resources/data/create/tags/item/invalid_for_track_paving.json deleted file mode 100644 index 3fde06bd..00000000 --- a/src/generated/resources/data/create/tags/item/invalid_for_track_paving.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values": [ - "bits_n_bobs:weathered_metal_bracket" - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json b/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json index 4ba9cfa7..a98fc816 100644 --- a/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json +++ b/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json @@ -49,7 +49,6 @@ "bits_n_bobs:large_flanged_cogwheel_chain", "bits_n_bobs:small_flanged_cogwheel", "bits_n_bobs:large_flanged_cogwheel", - "bits_n_bobs:weathered_metal_bracket", "bits_n_bobs:granite_tiles", "bits_n_bobs:granite_tile_stairs", "bits_n_bobs:granite_tile_slab", diff --git a/src/main/java/com/kipti/bnb/registry/BnbBlocks.java b/src/main/java/com/kipti/bnb/registry/BnbBlocks.java index 26f6561a..fea1b146 100644 --- a/src/main/java/com/kipti/bnb/registry/BnbBlocks.java +++ b/src/main/java/com/kipti/bnb/registry/BnbBlocks.java @@ -31,9 +31,6 @@ import com.simibubi.create.content.contraptions.actors.seat.SeatInteractionBehaviour; import com.simibubi.create.content.contraptions.actors.seat.SeatMovementBehaviour; import com.simibubi.create.content.contraptions.pulley.PulleyBlock; -import com.simibubi.create.content.decoration.bracket.BracketBlock; -import com.simibubi.create.content.decoration.bracket.BracketBlockItem; -import com.simibubi.create.content.decoration.bracket.BracketGenerator; import com.simibubi.create.foundation.block.DyedBlockList; import com.simibubi.create.foundation.data.AssetLookup; import com.simibubi.create.foundation.data.BlockStateGen; @@ -406,15 +403,6 @@ public static NonNullFunction WEATHERED_METAL_BRACKET = REGISTRATE.block("weathered_metal_bracket", BracketBlock::new) - .blockstate(new BracketGenerator("weathered_metal")::generate) - .properties(p -> p.sound(SoundType.NETHERITE_BLOCK)) - .transform(pickaxeOnly()) - .item(BracketBlockItem::new) - .tag(AllTags.AllItemTags.INVALID_FOR_TRACK_PAVING.tag) - .transform(BracketGenerator.itemModel("weathered_metal")) - .register(); - public static void register() { } diff --git a/src/main/java/com/kipti/bnb/registry/BnbLangEntries.java b/src/main/java/com/kipti/bnb/registry/BnbLangEntries.java index 72a63721..585974dd 100644 --- a/src/main/java/com/kipti/bnb/registry/BnbLangEntries.java +++ b/src/main/java/com/kipti/bnb/registry/BnbLangEntries.java @@ -53,8 +53,6 @@ public static void register() { "block.bits_n_bobs.chair.tooltip.condition1", "Right click on Chair", "block.bits_n_bobs.chair.tooltip.behaviour1", "Sits the player on the _Chair_. Press L-shift to leave the _Chair_.", - "block.bits_n_bobs.weathered_metal_bracket.tooltip.summary", "_Decorate_ your _Shafts, Cogwheels_ and _Pipes_ with an old and rusty bit of reinforcement.", - //Flywheel Bearing Tooltip "tooltip.bits_n_bobs.flywheel_bearing.flywheel_stats", "Flywheel Stats:", "tooltip.bits_n_bobs.flywheel_bearing.angular_mass", "Angular Mass:", diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/ground.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/ground.json deleted file mode 100644 index cb04e2b3..00000000 --- a/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/ground.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "credit": "Made with Blockbench", - "parent": "block/block", - "textures": { - "4": "#plate", - "5": "#bracket", - "particle": "#plate" - }, - "elements": [ - { - "from": [11.9, 3, 2], - "to": [14, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, -24]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [4.1, 3, 2], - "to": [11.9, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4.5, -24]}, - "faces": { - "north": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, - "east": {"uv": [7, 0, 8, 10], "texture": "#5"}, - "south": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, - "west": {"uv": [7, 0, 8, 10], "texture": "#5"}, - "up": {"uv": [8, 6, 16, 10], "texture": "#5"} - } - }, - { - "from": [2, 3, 2], - "to": [4.1, 6, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 4.5, -24]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [2, 10, 2], - "to": [4.1, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 11.5, -24]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [12.5, 6, 3.5], - "to": [13.5, 14, 4.5], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 14, -16]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [11.9, 10, 2], - "to": [14, 13, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 11.5, -24]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [2.5, 6, 3.5], - "to": [3.5, 14, 4.5], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, -16]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [11.9, 3, 10], - "to": [14, 6, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, -16]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [4.1, 3, 10], - "to": [11.9, 13, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4.5, -16]}, - "faces": { - "north": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, - "east": {"uv": [7, 0, 8, 10], "texture": "#5"}, - "south": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, - "west": {"uv": [7, 0, 8, 10], "texture": "#5"}, - "up": {"uv": [8, 6, 16, 10], "texture": "#5"} - } - }, - { - "from": [2, 3, 10], - "to": [4.1, 6, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 4.5, -16]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [2, 10, 10], - "to": [4.1, 13, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 11.5, -16]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [12.5, 6, 11.5], - "to": [13.5, 14, 12.5], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 14, -8]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [11.9, 10, 10], - "to": [14, 13, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 11.5, -16]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [2.5, 6, 11.5], - "to": [3.5, 14, 12.5], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, -8]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [1, 0, 1], - "to": [15, 3, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1.5, 8]}, - "faces": { - "north": {"uv": [0, 10, 14, 13], "texture": "#5"}, - "east": {"uv": [0, 13, 5, 16], "rotation": 180, "texture": "#5"}, - "south": {"uv": [0, 10, 14, 13], "texture": "#5"}, - "west": {"uv": [0, 13, 5, 16], "texture": "#5"}, - "up": {"uv": [9, 2, 14, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [9, 2, 14, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [1, 0, 10], - "to": [15, 3, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 1.5, 8]}, - "faces": { - "north": {"uv": [0, 10, 14, 13], "texture": "#5"}, - "east": {"uv": [0, 13, 5, 16], "texture": "#5"}, - "south": {"uv": [0, 10, 14, 13], "texture": "#5"}, - "west": {"uv": [0, 13, 5, 16], "rotation": 180, "texture": "#5"}, - "up": {"uv": [9, 2, 14, 16], "rotation": 270, "texture": "#4"}, - "down": {"uv": [9, 2, 14, 16], "rotation": 270, "texture": "#4"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/wall.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/wall.json deleted file mode 100644 index 46a608c9..00000000 --- a/src/main/resources/assets/bits_n_bobs/models/block/bracket/cog/wall.json +++ /dev/null @@ -1,206 +0,0 @@ -{ - "credit": "Made with Blockbench", - "parent": "block/block", - "texture_size": [32, 32], - "textures": { - "4": "#plate", - "5": "#bracket", - "particle": "#plate" - }, - "elements": [ - { - "from": [3, 2, 2], - "to": [6, 4.1, 6], - "faces": { - "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [3, 4.1, 2], - "to": [13, 11.9, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, - "faces": { - "north": {"uv": [0, 0, 8, 10], "rotation": 90, "texture": "#5"}, - "east": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 8, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"}, - "down": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [3, 11.9, 2], - "to": [6, 14, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [10, 11.9, 2], - "to": [13, 14, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [6, 2.5, 3.5], - "to": [14, 3.5, 4.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 8]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [10, 2, 2], - "to": [13, 4.1, 6], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [6, 12.5, 3.5], - "to": [14, 13.5, 4.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [3, 2, 10], - "to": [6, 4.1, 14], - "faces": { - "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [3, 4.1, 10], - "to": [13, 11.9, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, - "faces": { - "north": {"uv": [0, 0, 8, 10], "rotation": 90, "texture": "#5"}, - "east": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 8, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"}, - "down": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [3, 11.9, 10], - "to": [6, 14, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [10, 11.9, 10], - "to": [13, 14, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 13, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [6, 2.5, 11.5], - "to": [14, 3.5, 12.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -4, 8]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [10, 2, 10], - "to": [13, 4.1, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -2, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [6, 12.5, 11.5], - "to": [14, 13.5, 12.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 1, 1], - "to": [3, 15, 6], - "faces": { - "north": {"uv": [0, 10, 14, 13], "rotation": 270, "texture": "#5"}, - "east": {"uv": [9, 2, 14, 16], "rotation": 180, "texture": "#4"}, - "south": {"uv": [0, 10, 14, 13], "rotation": 90, "texture": "#5"}, - "west": {"uv": [9, 2, 14, 16], "rotation": 180, "texture": "#4"}, - "up": {"uv": [0, 13, 5, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 13, 5, 16], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [0, 1, 10], - "to": [3, 15, 15], - "faces": { - "north": {"uv": [0, 10, 14, 13], "rotation": 270, "texture": "#5"}, - "east": {"uv": [9, 2, 14, 16], "texture": "#4"}, - "south": {"uv": [0, 10, 14, 13], "rotation": 90, "texture": "#5"}, - "west": {"uv": [9, 2, 14, 16], "texture": "#4"}, - "up": {"uv": [0, 13, 5, 16], "rotation": 270, "texture": "#5"}, - "down": {"uv": [0, 13, 5, 16], "rotation": 90, "texture": "#5"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/item.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/item.json deleted file mode 100644 index 7026004e..00000000 --- a/src/main/resources/assets/bits_n_bobs/models/block/bracket/item.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "parent": "block/block", - "textures": { - "4": "#plate", - "5": "#bracket", - "particle": "#plate" - }, - "elements": [ - { - "from": [1, 0, 1], - "to": [15, 3, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 1.5]}, - "faces": { - "north": {"uv": [0, 10, 14, 13], "texture": "#5"}, - "east": {"uv": [0, 13, 14, 16], "texture": "#5"}, - "south": {"uv": [0, 10, 14, 13], "texture": "#5"}, - "west": {"uv": [0, 13, 14, 16], "texture": "#5"}, - "up": {"uv": [0, 2, 14, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 2, 14, 16], "rotation": 270, "texture": "#4"} - } - }, - { - "from": [11.9, 3, 6], - "to": [14, 6, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [4.1, 3, 6], - "to": [11.9, 13, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, - "east": {"uv": [7, 0, 8, 10], "texture": "#5"}, - "south": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, - "west": {"uv": [7, 0, 8, 10], "texture": "#5"}, - "up": {"uv": [8, 6, 16, 10], "texture": "#5"} - } - }, - { - "from": [2, 3, 6], - "to": [4.1, 6, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 4.5, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [2, 10, 6], - "to": [4.1, 13, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 11.5, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [12.5, 6, 7.5], - "to": [13.5, 14, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 14, 16]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [11.9, 10, 6], - "to": [14, 13, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 11.5, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [2.5, 6, 7.5], - "to": [3.5, 14, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, 16]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#4"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground.json deleted file mode 100644 index 6ba942bb..00000000 --- a/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/ground.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "credit": "Made with Blockbench", - "parent": "block/block", - "textures": { - "4": "#plate", - "5": "#bracket", - "particle": "#plate" - }, - "elements": [ - { - "from": [1, 0, 1], - "to": [15, 3, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 1.5]}, - "faces": { - "north": {"uv": [0, 10, 14, 13], "texture": "#5"}, - "east": {"uv": [0, 13, 14, 16], "texture": "#5"}, - "south": {"uv": [0, 10, 14, 13], "texture": "#5"}, - "west": {"uv": [0, 13, 14, 16], "texture": "#5"}, - "up": {"uv": [0, 2, 14, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 2, 14, 16], "rotation": 270, "texture": "#4"} - } - }, - { - "from": [11.9, 3, 6], - "to": [14, 6, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [4.1, 11, 6], - "to": [11.9, 13, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4.5, 8]}, - "faces": { - "north": {"uv": [8, 8, 16, 10], "rotation": 180, "texture": "#5"}, - "south": {"uv": [8, 6, 16, 8], "rotation": 180, "texture": "#5"}, - "up": {"uv": [8, 6, 16, 10], "texture": "#5"}, - "down": {"uv": [8, 6, 16, 10], "texture": "#5"} - } - }, - { - "from": [4.1, 3, 6], - "to": [11.9, 5, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [10, -3.5, 8]}, - "faces": { - "north": {"uv": [8, 8, 16, 10], "rotation": 180, "texture": "#5"}, - "south": {"uv": [8, 6, 16, 8], "rotation": 180, "texture": "#5"}, - "up": {"uv": [8, 6, 16, 10], "texture": "#5"} - } - }, - { - "from": [2, 3, 6], - "to": [4.1, 6, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 4.5, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [2, 10, 6], - "to": [4.1, 13, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 11.5, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [12.5, 6, 7.5], - "to": [13.5, 14, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 14, 16]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [11.9, 10, 6], - "to": [14, 13, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 11.5, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [2.5, 6, 7.5], - "to": [3.5, 14, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, 16]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#4"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall.json deleted file mode 100644 index 99e57988..00000000 --- a/src/main/resources/assets/bits_n_bobs/models/block/bracket/pipe/wall.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "parent": "block/block", - "textures": { - "4": "#plate", - "5": "#bracket", - "particle": "#plate" - }, - "elements": [ - { - "from": [0, 1, 1], - "to": [3, 15, 15], - "faces": { - "north": {"uv": [0, 10, 14, 13], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 2, 14, 16], "rotation": 180, "texture": "#4"}, - "south": {"uv": [0, 10, 14, 13], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 2, 14, 16], "texture": "#4"}, - "up": {"uv": [0, 13, 14, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 13, 14, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [3, 2, 6], - "to": [6, 4.1, 10], - "faces": { - "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [11, 4.1, 6], - "to": [13, 11.9, 10], - "faces": { - "north": {"uv": [8, 8, 16, 10], "rotation": 90, "texture": "#5"}, - "east": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [8, 6, 16, 8], "rotation": 270, "texture": "#5"}, - "west": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [3, 4.1, 6], - "to": [5, 11.9, 10], - "faces": { - "north": {"uv": [8, 8, 16, 10], "rotation": 90, "texture": "#5"}, - "east": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [8, 6, 16, 8], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [3, 11.9, 6], - "to": [6, 14, 10], - "faces": { - "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [10, 11.9, 6], - "to": [13, 14, 10], - "faces": { - "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [6, 2.5, 7.5], - "to": [14, 3.5, 8.5], - "faces": { - "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [10, 2, 6], - "to": [13, 4.1, 10], - "faces": { - "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [6, 12.5, 7.5], - "to": [14, 13.5, 8.5], - "faces": { - "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground.json deleted file mode 100644 index 7026004e..00000000 --- a/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/ground.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "parent": "block/block", - "textures": { - "4": "#plate", - "5": "#bracket", - "particle": "#plate" - }, - "elements": [ - { - "from": [1, 0, 1], - "to": [15, 3, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [1.5, 0, 1.5]}, - "faces": { - "north": {"uv": [0, 10, 14, 13], "texture": "#5"}, - "east": {"uv": [0, 13, 14, 16], "texture": "#5"}, - "south": {"uv": [0, 10, 14, 13], "texture": "#5"}, - "west": {"uv": [0, 13, 14, 16], "texture": "#5"}, - "up": {"uv": [0, 2, 14, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 2, 14, 16], "rotation": 270, "texture": "#4"} - } - }, - { - "from": [11.9, 3, 6], - "to": [14, 6, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4.5, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [4.1, 3, 6], - "to": [11.9, 13, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 4.5, 8]}, - "faces": { - "north": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, - "east": {"uv": [7, 0, 8, 10], "texture": "#5"}, - "south": {"uv": [0, 0, 8, 10], "rotation": 180, "texture": "#5"}, - "west": {"uv": [7, 0, 8, 10], "texture": "#5"}, - "up": {"uv": [8, 6, 16, 10], "texture": "#5"} - } - }, - { - "from": [2, 3, 6], - "to": [4.1, 6, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 4.5, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [2, 10, 6], - "to": [4.1, 13, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [3, 11.5, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "west": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 270, "texture": "#5"} - } - }, - { - "from": [12.5, 6, 7.5], - "to": [13.5, 14, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [20, 14, 16]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#4"} - } - }, - { - "from": [11.9, 10, 6], - "to": [14, 13, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [18, 11.5, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "texture": "#5"}, - "east": {"uv": [10, 3, 14, 6], "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "texture": "#5"}, - "up": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"}, - "down": {"uv": [10, 1, 14, 3], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [2.5, 6, 7.5], - "to": [3.5, 14, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [10, 14, 16]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "east": {"uv": [14, 8, 15, 16], "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "west": {"uv": [15, 8, 16, 16], "texture": "#4"}, - "up": {"uv": [14, 7, 15, 8], "texture": "#4"}, - "down": {"uv": [0, 0, 0, 0], "texture": "#4"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall.json b/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall.json deleted file mode 100644 index 6fabc5b7..00000000 --- a/src/main/resources/assets/bits_n_bobs/models/block/bracket/shaft/wall.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "credit": "Made with Blockbench", - "parent": "block/block", - "textures": { - "4": "#plate", - "5": "#bracket", - "particle": "#plate" - }, - "elements": [ - { - "from": [0, 1, 1], - "to": [3, 15, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 14.5, 1.5]}, - "faces": { - "north": {"uv": [0, 10, 14, 13], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 2, 14, 16], "rotation": 180, "texture": "#4"}, - "south": {"uv": [0, 10, 14, 13], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 2, 14, 16], "texture": "#4"}, - "up": {"uv": [0, 13, 14, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 13, 14, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [3, 2, 6], - "to": [6, 4.1, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 8, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [3, 4.1, 6], - "to": [13, 11.9, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 6, 8]}, - "faces": { - "north": {"uv": [0, 0, 8, 10], "rotation": 90, "texture": "#5"}, - "east": {"uv": [8, 6, 16, 10], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 8, 10], "rotation": 270, "texture": "#5"}, - "up": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"}, - "down": {"uv": [7, 0, 8, 10], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [3, 11.9, 6], - "to": [6, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [4.5, 13, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [10, 11.9, 6], - "to": [13, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5, 13, 8]}, - "faces": { - "north": {"uv": [10, 3, 8, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "south": {"uv": [8, 3, 10, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "texture": "#5"}, - "up": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [6, 2.5, 7.5], - "to": [14, 3.5, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [14, -4, 16]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [10, 2, 6], - "to": [13, 4.1, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [11.5, -2, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 6], "rotation": 270, "texture": "#5"}, - "east": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "south": {"uv": [10, 3, 8, 6], "rotation": 90, "texture": "#5"}, - "west": {"uv": [10, 1, 14, 3], "rotation": 180, "texture": "#5"}, - "down": {"uv": [10, 3, 14, 6], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [6, 12.5, 7.5], - "to": [14, 13.5, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [14, 6, 16]}, - "faces": { - "north": {"uv": [15, 8, 16, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [14, 7, 15, 8], "rotation": 90, "texture": "#4"}, - "south": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 0, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [15, 8, 16, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [14, 8, 15, 16], "rotation": 90, "texture": "#4"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/bits_n_bobs/textures/block/bracket_plate_weathered_metal.png b/src/main/resources/assets/bits_n_bobs/textures/block/bracket_plate_weathered_metal.png deleted file mode 100644 index 33ed1a17262bcc51d28e57ee9ba8499e02e3fc27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 491 zcmVPx$rAb6VR5*>rlR<9OFcgNrj2%0k;?c}>#0aQF7f7r)0$UbHY*?^j#}POgCt%MF zx@)BhX;9im6Ezv9al^vc$sqQ4jr-Qx(V$q=A(mX*%E}#dn(Zbq59qeby#=Z z0C+YlGdh@pa^7>>_dEtp>@6(nu*o&xz-%gx_Gda&kK*Vk#kP*BaeR9J zc96C(fp!i%+)+S!CFeR z5J`Mr2C?=YjpPq!Y+<MCD`Uc#-0Ju#0(U;o0d)0<&3-k0{>K hXj_{gjPx$!%0LzR5*=&lD%)+Fc8Ima#T^4Ob>QoqaOxhq*JygK&Eb)`bTHWWS|*}wp)<` z1!BaoJxG>B(stE>A}ygnZaR|p?%sRH;O_Ri2FR7hg^UGJ6ktrv{o*m;l?VYc2}r?Q zqyXeui7|Dj@b31yc1?4oS$z8u_y$$3+5Xw`xLN@)olF?bM)ald4ICI?Jd95aq9|bd zYs>R;=`UUW{^~7XKHt<1=wwPxjeByK@X}0f$IEKPT%?}zCR4~*cz-$`ycW6Alrc;> z0o(qBPr6__nRFyLAM&iUQyqO}-()Pjv=Cr48+qDo6WiL$#y7{ry@ge-nIf27zC(Wc z2*8sr8vYi%3jhs0aoUD6G)xpM18ob8Viv^=jRocn-JRC-gq`ldWekae@Zy7|uPcq{ z3!e|t(4PlYh}j>J!vtMvq9|bT@YQ~#pX;qRF4+{w*n%<%!}XyvZIdbQh2O$uYQL}O z3v^|5nf;NuNYH=nv@sB+XY7gt<0xP)PHXImzTmlc@E2x(^fJu;Nc83mfL&p0+F&ms zQSck>={twZ7%-N;j0L&U1d5J~@ap`369-l3WwqH{oR56|y=m|d*Ff~2afg_T00000 LNkvXXu0mjffbsMs