Examples of SideData


Examples of mekanism.common.SideData

  public TileEntityFactory()
  {
    this(FactoryTier.BASIC, MachineType.BASIC_FACTORY);

    sideOutputs.add(new SideData(EnumColor.GREY, InventoryUtils.EMPTY));
    sideOutputs.add(new SideData(EnumColor.ORANGE, new int[] {0}));
    sideOutputs.add(new SideData(EnumColor.DARK_GREEN, new int[] {1}));
    sideOutputs.add(new SideData(EnumColor.PURPLE, new int[] {4}));
    sideOutputs.add(new SideData(EnumColor.DARK_RED, new int[] {5, 6, 7}));
    sideOutputs.add(new SideData(EnumColor.DARK_BLUE, new int[] {8, 9, 10}));

    ejectorComponent = new TileComponentEjector(this, sideOutputs.get(5));
  }
View Full Code Here

Examples of mekanism.common.SideData

  public TileEntityPRC()
  {
    super("PressurizedReactionChamber.ogg", "PressurizedReactionChamber", new ResourceLocation("mekanism", "gui/GuiPRC.png"), Mekanism.pressurizedReactionBaseUsage, 100, MachineType.PRESSURIZED_REACTION_CHAMBER.baseEnergy);

    sideOutputs.add(new SideData(EnumColor.GREY, InventoryUtils.EMPTY));
    sideOutputs.add(new SideData(EnumColor.DARK_RED, new int[] {0}));
    sideOutputs.add(new SideData(EnumColor.DARK_GREEN, new int[] {1}));
    sideOutputs.add(new SideData(EnumColor.DARK_BLUE, new int[] {2}));
    sideOutputs.add(new SideData(EnumColor.ORANGE, new int[] {3}));

    sideConfig = new byte[] {2, 1, 0, 0, 0, 3};

    inventory = new ItemStack[4];
View Full Code Here

Examples of mekanism.common.SideData

{
  public TileEntityAdvancedFactory()
  {
    super(FactoryTier.ADVANCED, MachineType.ADVANCED_FACTORY);

    sideOutputs.add(new SideData(EnumColor.GREY, InventoryUtils.EMPTY));
    sideOutputs.add(new SideData(EnumColor.ORANGE, new int[] {0}));
    sideOutputs.add(new SideData(EnumColor.DARK_GREEN, new int[] {1}));
    sideOutputs.add(new SideData(EnumColor.PURPLE, new int[] {4}));
    sideOutputs.add(new SideData(EnumColor.DARK_RED, new int[] {5, 6, 7, 8, 9}));
    sideOutputs.add(new SideData(EnumColor.DARK_BLUE, new int[] {10, 11, 12, 13, 14}));

    ejectorComponent = new TileComponentEjector(this, sideOutputs.get(5));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.