Package uristqwerty.CraftGuide.api

Examples of uristqwerty.CraftGuide.api.ChanceSlot


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

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


  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

TOP

Related Classes of uristqwerty.CraftGuide.api.ChanceSlot

Copyright © 2018 www.massapicom. 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.