Examples of LiquidSlot


Examples of uristqwerty.CraftGuide.api.LiquidSlot

  public CraftGuideFabricator() {
    for (int i = 0; i < 3; i++)
      for (int j = 0; j < 3; j++)
        slots[i + j * 3] = new ItemSlot(i * 18 + 3, j * 18 + 3, 16, 16).drawOwnBackground();
    slots[9] = new ItemSlot(59, 21, 16, 16, true).setSlotType(SlotType.OUTPUT_SLOT).drawOwnBackground();
    slots[10] = new LiquidSlot(59, 39);
    slots[11] = new ItemSlot(59, 3, 16, 16).setSlotType(SlotType.MACHINE_SLOT);
  }
View Full Code Here

Examples of uristqwerty.CraftGuide.api.LiquidSlot

  private final Slot[] slots = new Slot[5];

  public CraftGuideFermenter() {
    slots[0] = new ItemSlot(3, 12, 16, 16, true);
    slots[1] = new ItemSlot(3, 30, 16, 16, true);
    slots[2] = new LiquidSlot(21, 21);
    slots[3] = new LiquidSlot(59, 21).setSlotType(SlotType.OUTPUT_SLOT);
    slots[4] = new ItemSlot(40, 21, 16, 16).setSlotType(SlotType.MACHINE_SLOT);
  }
View Full Code Here

Examples of uristqwerty.CraftGuide.api.LiquidSlot

  private final Slot[] slots = new Slot[4];

  public CraftGuideBottler() {
    slots[0] = new ItemSlot(12, 12, 16, 16).drawOwnBackground();
    slots[1] = new LiquidSlot(12, 30);
    slots[2] = new ItemSlot(50, 21, 16, 16).setSlotType(SlotType.OUTPUT_SLOT).drawOwnBackground();
    slots[3] = new ItemSlot(31, 21, 16, 16).setSlotType(SlotType.MACHINE_SLOT);
  }
View Full Code Here

Examples of uristqwerty.CraftGuide.api.LiquidSlot

  public CraftGuideSqueezer() {
    for (int i = 0; i < 3; i++)
      for (int j = 0; j < 3; j++)
        slots[i + j * 3] = new ItemSlot(i * 18 + 3, j * 18 + 3, 16, 16).drawOwnBackground();
    slots[9] = new ChanceSlot(59, 39, 16, 16, true).setRatio(100).setSlotType(SlotType.OUTPUT_SLOT).drawOwnBackground();
    slots[10] = new LiquidSlot(59, 21).setSlotType(SlotType.OUTPUT_SLOT);
    slots[11] = new ItemSlot(59, 3, 16, 16).setSlotType(SlotType.MACHINE_SLOT);
  }
View Full Code Here

Examples of uristqwerty.CraftGuide.api.LiquidSlot

public class CraftGuideStill implements RecipeProvider {

  private final Slot[] slots = new Slot[3];

  public CraftGuideStill() {
    slots[0] = new LiquidSlot(12, 21);
    slots[1] = new LiquidSlot(50, 21).setSlotType(SlotType.OUTPUT_SLOT);
    slots[2] = new ItemSlot(31, 21, 16, 16).setSlotType(SlotType.MACHINE_SLOT);
  }
View Full Code Here

Examples of uristqwerty.CraftGuide.api.LiquidSlot

  public CraftGuideCarpenter() {
    for (int i = 0; i < 3; i++)
      for (int j = 0; j < 3; j++)
        slots[i + j * 3] = new ItemSlot(i * 18 + 3, j * 18 + 3, 16, 16).drawOwnBackground();
    slots[9] = new ItemSlot(59, 21, 16, 16, true).setSlotType(SlotType.OUTPUT_SLOT).drawOwnBackground();
    slots[10] = new LiquidSlot(59, 39);
    slots[11] = new ItemSlot(59, 3, 16, 16).setSlotType(SlotType.MACHINE_SLOT);
  }
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.