package thaumcraft.api.internal; import java.util.ArrayList; import net.minecraft.item.ItemStack; import net.minecraft.util.WeightedRandom; public class WeightedRandomLoot extends WeightedRandom.Item { /** The Item/Block ID to generate in the bag. */ public ItemStack item; public WeightedRandomLoot(ItemStack stack, int weight) { super(weight); this.item = stack; } public static ArrayList lootBagCommon = new ArrayList(); public static ArrayList lootBagUncommon = new ArrayList(); public static ArrayList lootBagRare = new ArrayList(); }