blob: 222e0de59b8dfa9ba4e22f1e6c93ec70c628649d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package com.elisis.gtnhlanth.util;
import net.minecraft.util.EnumChatFormatting;
import net.minecraft.util.StatCollector;
public class DescTextLocalization {
public static final String BLUEPRINT_INFO =
"Follow the" + EnumChatFormatting.BLUE + " Structure" + EnumChatFormatting.DARK_BLUE + "Lib"
+ EnumChatFormatting.GRAY + " hologram projector to build the main structure.";
public static String[] addText(String preFix, int length) {
String[] text = new String[length];
for (int i = 0; i < length; i++) {
text[i] = StatCollector.translateToLocal(preFix + "." + i);
}
return text;
}
}
|