Skip to content

Bundled Network Cable

Joseph Bettendorff edited this page Aug 1, 2024 · 5 revisions

Bundled Network Cable blocks can transmit redstone power from Colored Network Cables on sixteen channels along floors, walls, and ceilings, and around corners. They can connect to Colored Network Cables and Bundled Network Cables, but not to Colored Network Cables of different colors.

Bundled Network Cables

Contents
  1. Obtaining
    1. Crafting Recipes
  2. Usage
    1. Crafting Ingredient
      1. Bitwise AND Gate
      2. Bitwise Diode
      3. Bitwise NOT Gate
      4. Bitwise OR Gate
      5. Bitwise XNOR Gate
      6. Bitwise XOR Gate
      7. Bundled Cable Spool
      8. Bundled Cable Post Post
      9. Bundled Cable Relay Plate
  • Data
    1. Block Entity Data
  • History
  • Obtaining

    Crafting Recipes

    Recipe Type Ingredients Output Example
    Shaped Crafting 3x Bundled Network Cable Bundled Network Cable Recipe

    Usage

    Bundled Network Cables can be attached to solid faces of blocks; attaching a wire to a face consumes a wire item, and breaking that wire or the block that the wire is attached to causes a wire item to be dropped.

    Bundled Network Cables transmit sixteen-channel power between themselves and other adjacent blocks capable of transmitting sixteen-channel power (mostly Colored Network Cables and Bundled Cable Relay Plates. Power from multiple colors of cable will be kept separate while being conducted through the bundled cable.

    Bundled Network Cables use power values in a range of [0,31], effectively letting them transmit power across almost twice as many connections as redstone dust; standard redstone power is converted to expanded-range power and back by doubling or halving where appropriate. Bundled Cable Posts connected by Bundled Cable Spools are recommended for long-distance signal transmission.

    Crafting Ingredient

    Bitwise AND Gate

    Recipe Type Ingredients Output Example
    Soldering 1x Bitwise AND Gate Soldering Recipe for Bitwise AND Gates

    Bitwise Diode

    Recipe Type Ingredients Output Example
    Soldering 1x Bitwise Diode Soldering Recipe for Bitwise Diodes

    Bitwise NOT Gate

    Recipe Type Ingredients Output Example
    Soldering 1x Bitwise NOT Gate Soldering Recipe for Bitwise NOT Gates

    Bitwise OR Gate

    Recipe Type Ingredients Output Example
    Soldering 1x Bitwise OR Gate Soldering Recipe for Bitwise OR Gates

    Bitwise XNOR Gate

    Recipe Type Ingredients Output Example
    Soldering 1x Bitwise XNOR Gate Soldering Recipe for Bitwise XNOR Gates

    Bitwise XOR Gate

    Recipe Type Ingredients Output Example
    Soldering 1x Bitwise XOR Gate Soldering Recipe for Bitwise XOR Gates

    Bundled Cable Spool

    Recipe Type Ingredients Output Example
    Shaped Crafting 1x Bundled Cable Spool Bundled Cable Spool Recipe

    Bundled Cable Post

    Recipe Type Ingredients Output Example
    Shapeless Crafting 1x Bundled Cable Post Shapeless Crafting Recipe for Bundled Cable Posts
    Soldering 1x Bundled Cable Post Soldering Recipe for Bundled Cable Posts

    Bundled Cable Relay Plate

    Recipe Type Ingredients Output Example
    Shaped Crafting 1x Bundled Cable Relay Plate Shaped Crafting Recipe for Bundled Cable Relay Plates
    Soldering 1x Bundled Cable Relay Plate Soldering Recipe for Bundled Cable Relay Plates

    Data

    Block Block/Item ID Localization Key
    Bundled Network Cable morered:bundled_network_cable block.morered.bundled_network_cable
    Block Properties Value
    Blocks Movement No
    Flammable No
    Liquid No
    Opaque No
    Replaceable No
    Solid No
    Blast Resistance 0
    Hardness 0
    Light Output 0
    Tool Required No
    Flammable No
    Piston Reaction Break
    Render Type Solid
    Item Properties Value
    Stack Limit 64
    Blockstate Properties Values
    down {false, true}
    up {false, true}
    north {false, true}
    south {false, true}
    west {false, true}
    east {false, true}
    • The six direction values indicate which interior faces have wires attached.
    Block Tags
    None
    Item Tags
    • morered:bundled_network_cables
    • morered:network_cables

    Block Entity Data

    <root>
    {
    	"power":
    	{
    		"down":
    		{
    			"channel_flags": short,
    			"power_bytes": [bytes]
    		}
    		"up":
    		{
    			"channel_flags": short,
    			"power_bytes": [bytes]
    		}
    		"north":
    		{
    			"channel_flags": short,
    			"power_bytes": [bytes]
    		}
    		"south":
    		{
    			"channel_flags": short,
    			"power_bytes": [bytes]
    		}
    		"west":
    		{
    			"channel_flags": short,
    			"power_bytes": [bytes]
    		}
    		"east":
    		{
    			"channel_flags": short,
    			"power_bytes": [bytes]
    		}
    	}
    }
    
    Data Field Format Description
    "power" Compound Holds the six direction fields containing the power channels for each face
    • "down"
    • "up"
    • "north"
    • "south"
    • "west"
    • "east"
    Compound Holds the power value for a specific face
    "channel_flags" Short A 16-bit number whose bits represent which channels are being used for the given side, in wool color order (with the LSB representing "white" and the MSB representing "black")
    "power_bytes" Byte Array An array of 0 to 16 bytes representing the power value of the channels present (with index 0 being the least-significant "1" bit's color in channel_flags, index 1 being the second-least 1, index 2 being the third, etc)

    History

    Version Changelog
    1.16.5-2.1.1.0 Fixed a bug where bundled cable blockentities would be loaded in an incorrect power state
    1.16.5-2.1.0.0 Added to game
    Clone this wiki locally