Skip to content

Commit

Permalink
feat: change IV color to the lighter blue (GregTechCEu#720)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikerooni authored Jan 8, 2024
1 parent bd7ff3f commit ed4ee07
Show file tree
Hide file tree
Showing 6 changed files with 510 additions and 514 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ Version: 1.0.20.b
- add way for addons to register custom ore veins
- fix addon tooltype registration issue where tagging methods were inaccessible
- add solar steam boilers
- fix wirecutters not being usable whilst sneaking
- fix wirecutters not being usable whilst sneaking
- change IV tooltip color to lighter blue for better readability
13 changes: 4 additions & 9 deletions common/src/main/java/com/gregtechceu/gtceu/api/GTValues.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
package com.gregtechceu.gtceu.api;


import com.gregtechceu.gtceu.GTCEu;
import com.gregtechceu.gtceu.data.recipe.CraftingComponent;
import net.minecraft.util.RandomSource;
import net.minecraft.world.level.levelgen.LegacyRandomSource;
import net.minecraft.world.level.levelgen.SingleThreadedRandomSource;

import java.time.LocalDate;
import java.util.Arrays;
import java.util.Random;
import java.util.concurrent.ThreadLocalRandom;
import java.util.function.Supplier;

import static net.minecraft.ChatFormatting.*;
Expand Down Expand Up @@ -133,15 +128,15 @@ public static int[] tiersBetween(int min, int max) {
AQUA + "MV",
GOLD + "HV",
DARK_PURPLE + "EV",
DARK_BLUE + "IV",
BLUE + "IV",
LIGHT_PURPLE + "LuV",
RED + "ZPM",
DARK_AQUA + "UV",
DARK_RED + "UHV",
GREEN + "UEV",
DARK_GREEN + "UIV",
YELLOW + "UXV",
BLUE + "OpV",
BLUE.toString() + BOLD + "OpV",
RED.toString() + BOLD + "MAX"};


Expand All @@ -151,15 +146,15 @@ public static int[] tiersBetween(int min, int max) {
AQUA + "Advanced",
GOLD + "Advanced",
DARK_PURPLE + "Advanced",
DARK_BLUE + "Elite",
BLUE + "Elite",
LIGHT_PURPLE + "Elite",
RED + "Elite",
DARK_AQUA + "Ultimate",
DARK_RED + "Epic",
GREEN + "Epic",
DARK_GREEN + "Epic",
YELLOW + "Epic",
BLUE + "Legendary",
BLUE.toString() + BOLD + "Legendary",
RED.toString() + BOLD + "MAX"};

public static final String[] VLVT = new String[]{
Expand Down
Loading

0 comments on commit ed4ee07

Please sign in to comment.