Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ public final class ItemGeneratorPool {
public static final ItemGeneratorPool TEAM_LVL_1 = new ItemGeneratorPool()
.add(new ItemStack(Items.IRON_INGOT, 1), 10)
.add(new ItemStack(Items.GOLD_INGOT, 1), 2)
.spawnInterval(34);
.spawnInterval(26);

public static final ItemGeneratorPool TEAM_LVL_2 = new ItemGeneratorPool()
.add(new ItemStack(Items.IRON_INGOT, 1), 10)
.add(new ItemStack(Items.IRON_INGOT, 2), 3)
.add(new ItemStack(Items.IRON_INGOT, 2), 4)
.add(new ItemStack(Items.GOLD_INGOT, 1), 3)
.spawnInterval(30);
.spawnInterval(24);

public static final ItemGeneratorPool TEAM_LVL_3 = new ItemGeneratorPool()
.add(new ItemStack(Items.IRON_INGOT, 1), 36)
.add(new ItemStack(Items.IRON_INGOT, 2), 18)
.add(new ItemStack(Items.GOLD_INGOT, 1), 9)
.add(new ItemStack(Items.GOLD_INGOT, 2), 3)
.add(new ItemStack(Items.EMERALD, 1), 1)
.spawnInterval(26);
.spawnInterval(20);

public static final ItemGeneratorPool DIAMOND = new ItemGeneratorPool()
.add(new ItemStack(Items.DIAMOND, 1), 1)
Expand Down