1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package de.hysky.skyblocker.skyblock.tabhud.widget;
import de.hysky.skyblocker.skyblock.tabhud.util.Ico;
import net.minecraft.text.MutableText;
import net.minecraft.text.Text;
import net.minecraft.util.Formatting;
// this widget shows info about your home island
public class IslandServerWidget extends Widget {
private static final MutableText TITLE = Text.literal("Island Info").formatted(Formatting.DARK_AQUA,
Formatting.BOLD);
public IslandServerWidget() {
super(TITLE, Formatting.DARK_AQUA.getColorValue());
}
@Override
public void updateContent() {
this.addSimpleIcoText(Ico.MAP, "Area:", Formatting.DARK_AQUA, 41);
this.addSimpleIcoText(Ico.NTAG, "Server ID:", Formatting.GRAY, 42);
this.addSimpleIcoText(Ico.EMERALD, "Crystals:", Formatting.DARK_PURPLE, 43);
this.addSimpleIcoText(Ico.CHEST, "Stash:", Formatting.GREEN, 44);
this.addSimpleIcoText(Ico.COMMAND, "Minions:", Formatting.BLUE, 45);
}
}
|