38 lines
1022 B
Java

package com.hbm.inventory.material;
public enum MaterialShapes {
QUANTUM(1), // 1/72 of an ingot, allows the ingot to be divisible through 2, 4, 6, 8, 9, 12, 24 and 36
NUGGET(8, "nugget"),
DUSTTINY(NUGGET.quantity, "dustTiny"),
WIRE(9),
BILLET(NUGGET.quantity * 6, "billet"),
INGOT(NUGGET.quantity * 9, "ingot"),
GEM(INGOT.quantity, "gem"),
CRYSTAL(INGOT.quantity, "crystal"),
DUST(INGOT.quantity, "dust"),
PLATE(INGOT.quantity, "plate"),
QUART(162),
BLOCK(INGOT.quantity * 9, "block");
private int quantity;
String[] prefixes;
private MaterialShapes(int quantity, String... prefixes) {
this.quantity = quantity;
this.prefixes = prefixes;
for(String prefix : prefixes) {
Mats.prefixByName.put(prefix, this);
}
}
public int q(int amount) {
return this.quantity * amount;
}
public int q(int unitsUsed, int itemsProduced) { //eg rails: INOGT.q(6, 16) since the recipe uses 6 ton ingots producing 16 individual rail blocks
return this.quantity * unitsUsed / itemsProduced;
}
}