1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package darkknight.jewelrycraft.random; import java.util.Random; import net.minecraft.util.WeightedRandom.Item; public class WeightedRandomAffix extends Item { private final String affix; public WeightedRandomAffix(String affix, int weight) { super(weight); this.affix = affix; } public String getAffix(Random random) { return affix; } }