Skip to content

Commit

Permalink
Changed configs
Browse files Browse the repository at this point in the history
  • Loading branch information
PeachesMLG committed Sep 23, 2023
1 parent 3e77315 commit f69335d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/main/java/com/iridium/iridiumskyblock/configs/Biomes.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
public class Biomes {

public Map<String, BiomeCategory> categories = ImmutableMap.<String, BiomeCategory>builder()
.put("Overworld", new BiomeCategory(new Item(XMaterial.GRASS_BLOCK, 11, 1, "&9&lOverworld", Collections.emptyList()), 54))
.put("Nether", new BiomeCategory(new Item(XMaterial.CRIMSON_NYLIUM, 13, 1, "&9&lNether", Collections.emptyList()), 36))
.put("End", new BiomeCategory(new Item(XMaterial.END_STONE, 15, 1, "&9&lEnd", Collections.emptyList()), 36))
.put("Overworld", new BiomeCategory(new Item(XMaterial.GRASS_BLOCK, 11, 1, "&9&lOverworld", Collections.emptyList()), 27))
.put("Nether", new BiomeCategory(new Item(XMaterial.CRIMSON_NYLIUM, 13, 1, "&9&lNether", Collections.emptyList()), 27))
.put("End", new BiomeCategory(new Item(XMaterial.END_STONE, 15, 1, "&9&lEnd", Collections.emptyList()), 27))
.build();
public Map<String, List<BiomeItem>> items = ImmutableMap.<String, List<BiomeItem>>builder()
.put("Overworld", Arrays.asList(
Expand All @@ -25,23 +25,23 @@ public class Biomes {
XMaterial.GRASS_BLOCK,
XBiome.PLAINS,
1,
20,
11,
new Cost(100, new HashMap<>())
),
new BiomeItem(
"&9&lSnowy Plains",
XMaterial.SNOW_BLOCK,
XBiome.SNOWY_PLAINS,
1,
22,
13,
new Cost(50, new HashMap<>())
),
new BiomeItem(
"&9&lSavanna",
XMaterial.TALL_GRASS,
XBiome.SAVANNA,
1,
24,
15,
new Cost(100, new HashMap<>())
)
))
Expand All @@ -51,23 +51,23 @@ public class Biomes {
XMaterial.NETHERRACK,
XBiome.NETHER_WASTES,
1,
20,
11,
new Cost(50, new HashMap<>())
),
new BiomeItem(
"&9&lCrimson Forest",
XMaterial.CRIMSON_NYLIUM,
XBiome.CRIMSON_FOREST,
1,
22,
13,
new Cost(1000, new HashMap<>())
),
new BiomeItem(
"&9&lWarped Forest",
XMaterial.WARPED_NYLIUM,
XBiome.WARPED_FOREST,
1,
24,
15,
new Cost(100, new HashMap<>())
)
)
Expand All @@ -78,23 +78,23 @@ public class Biomes {
XMaterial.END_STONE,
XBiome.THE_END,
1,
20,
11,
new Cost(100, new HashMap<>())
),
new BiomeItem(
"&9&lEnd Highlands",
XMaterial.PURPUR_BLOCK,
XBiome.END_HIGHLANDS,
1,
22,
13,
new Cost(150, new HashMap<>())
),
new BiomeItem(
"&9&lEnd Barrens",
XMaterial.ENDER_EYE,
XBiome.END_BARRENS,
1,
24,
15,
new Cost(150, new HashMap<>())
)
)
Expand Down

0 comments on commit f69335d

Please sign in to comment.