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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
package at.hannibal2.skyhanni.features.mining.powdertracker
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
enum class PowderChestReward(val displayName: String, pattern: String) {
MITHRIL_POWDER(
"§aMithril Powder",
" {4}§r§2Mithril Powder(?: §r§8x(?<amount>.*))?",
),
GEMSTONE_POWDER(
"§dGemstone Powder",
" {4}§r§dGemstone Powder(?: §r§8x(?<amount>.*))?",
),
ROUGH_RUBY_GEMSTONE(
"§fRough Ruby Gemstone",
" {4}§r§f❤ Rough Ruby Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWED_RUBY_GEMSTONE(
"§aFlawed Sapphire Gemstone",
" {4}§r§a❤ Flawed Ruby Gemstone(?: §r§8x(?<amount>.*))?",
),
FINE_RUBY_GEMSTONE(
"§9Fine Ruby Gemstone",
" {4}§r§9❤ Fine Ruby Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWLESS_RUBY_GEMSTONE(
"§5Flawless Ruby Gemstone",
" {4}§r§5❤ Flawless Ruby Gemstone(?: §r§8x(?<amount>.*))?",
),
ROUGH_SAPPHIRE_GEMSTONE(
"§fRough Sapphire Gemstone",
" {4}§r§f✎ Rough Sapphire Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWED_SAPPHIRE_GEMSTONE(
"§aFlawed Sapphire Gemstone",
" {4}§r§a✎ Flawed Sapphire Gemstone(?: §r§8x(?<amount>.*))?",
),
FINE_SAPPHIRE_GEMSTONE(
"§9Fine Sapphire Gemstone",
" {4}§r§9✎ Fine Sapphire Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWLESS_SAPPHIRE_GEMSTONE(
"§5Flawless Sapphire Gemstone",
" {4}§r§5✎ Flawless Sapphire Gemstone(?: §r§8x(?<amount>.*))?",
),
ROUGH_AMBER_GEMSTONE(
"§fRough Amber Gemstone",
" {4}§r§f⸕ Rough Amber Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWED_AMBER_GEMSTONE(
"§aFlawed Amber Gemstone",
" {4}§r§a⸕ Flawed Amber Gemstone(?: §r§8x(?<amount>.*))?",
),
FINE_AMBER_GEMSTONE(
"§9Fine Amber Gemstone",
" {4}§r§9⸕ Fine Amber Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWLESS_AMBER_GEMSTONE(
"§5Flawless Amber Gemstone",
" {4}§r§5⸕ Flawless Amber Gemstone(?: §r§8x(?<amount>.*))?",
),
ROUGH_AMETHYST_GEMSTONE(
"§fRough Amethyst Gemstone",
" {4}§r§f❈ Rough Amethyst Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWED_AMETHYST_GEMSTONE(
"§aFlawed Amethyst Gemstone",
" {4}§r§a❈ Flawed Amethyst Gemstone(?: §r§8x(?<amount>.*))?",
),
FINE_AMETHYST_GEMSTONE(
"§9Fine Amethyst Gemstone",
" {4}§r§9❈ Fine Amethyst Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWLESS_AMETHYST_GEMSTONE(
"§5Flawless Amethyst Gemstone",
" {4}§r§5❈ Flawless Amethyst Gemstone(?: §r§8x(?<amount>.*))?",
),
ROUGH_JADE_GEMSTONE(
"§fRough Jade Gemstone",
" {4}§r§f☘ Rough Jade Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWED_JADE_GEMSTONE(
"§aFlawed Jade Gemstone",
" {4}§r§a☘ Flawed Jade Gemstone(?: §r§8x(?<amount>.*))?",
),
FINE_JADE_GEMSTONE(
"§9Fine Jade Gemstone",
" {4}§r§9☘ Fine Jade Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWLESS_JADE_GEMSTONE(
"§5Flawless Jade Gemstone",
" {4}§r§5☘ Flawless Jade Gemstone(?: §r§8x(?<amount>.*))?",
),
ROUGH_TOPAZ_GEMSTONE(
"§fRough Topaz Gemstone",
" {4}§r§f✧ Rough Topaz Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWED_TOPAZ_GEMSTONE(
"§aFlawed Topaz Gemstone",
" {4}§r§a✧ Flawed Topaz Gemstone(?: §r§8x(?<amount>.*))?",
),
FINE_TOPAZ_GEMSTONE(
"§9Fine Topaz Gemstone",
" {4}§r§9✧ Fine Topaz Gemstone(?: §r§8x(?<amount>.*))?",
),
FLAWLESS_TOPAZ_GEMSTONE(
"§5Flawless Topaz Gemstone",
" {4}§r§5✧ Flawless Topaz Gemstone(?: §r§8x(?<amount>.*))?",
),
FTX_3070(
"§9FTX 3070",
" {4}§r§9FTX 3070(?: §r§8x(?<amount>.*))?",
),
ELECTRON_TRANSIMTTER(
"§9Electron Transmitter",
" {4}§r§9Electron Transmitter(?: §r§8x(?<amount>.*))?",
),
ROBOTRON_REFLECTOR(
"§9Robotron Reflector",
" {4}§r§9Robotron Reflector(?: §r§8x(?<amount>.*))?",
),
SUPERLITE_MOTOR(
"§9Superlite Motor",
" {4}§r§9Superlite Motor(?: §r§8x(?<amount>.*))?",
),
CONTROL_SWITCH(
"§9Control Switch",
" {4}§r§9Control Switch(?: §r§8x(?<amount>.*))?",
),
SYNTHETIC_HEART(
"§9Synthetic Heart",
" {4}§r§9Synthetic Heart(?: §r§8x(?<amount>.*))?",
),
GOBLIN_EGG(
"§9Goblin Egg",
" {4}§r§9Goblin Egg(?: §r§8x(?<amount>.*))?",
),
GREEN_GOBLIN_EGG(
"§aGreen Goblin Egg",
" {4}§r§a§r§aGreen Goblin Egg(?: §r§8x(?<amount>.*))?",
),
RED_GOBLIN_EGG(
"§cRed Goblin Egg",
" {4}§r§9§r§cRed Goblin Egg(?: §r§8x(?<amount>.*))?",
),
YELLOW_GOBLIN_EGG(
"§eYellow Goblin Egg",
" {4}§r§9§r§eYellow Goblin Egg(?: §r§8x(?<amount>.*))?",
),
BLUE_GOBLIN_EGG(
"§3Blue Goblin Egg",
" {4}§r§9§r§3Blue Goblin Egg(?: §r§8x(?<amount>.*))?",
),
WISHING_COMPASS(
"§aWishing Compass",
" {4}§r§aWishing Compass(?: §r§8x(?<amount>.*))?",
),
SLUDGE_JUICE(
"§aSludge Juice", " {4}§r§aSludge Juice(?: §r§8x(?<amount>.*))?",
),
ASCENSION_ROPE(
"§9Ascension Rope",
" {4}§r§9Ascension Rope(?: §r§8x(?<amount>.*))?",
),
TREASURITE(
"§5Treasurite",
" {4}§r§5Treasurite(?: §r§8x(?<amount>.*))?",
),
JUNGLE_HEART(
"§6Jungle Heart",
" {4}§r§6Jungle Heart(?: §r§8x(?<amount>.*))?",
),
PICKONIMBUS_2000(
"§5Pickonimbus 2000",
" {4}§r§5Pickonimbus 2000(?: §r§8x(?<amount>.*))?",
),
YOGGIE(
"§aYoggie",
" {4}§r§aYoggie(?: §r§8x(?<amount>.*))?",
),
PREHISTORIC_EGG(
"§fPrehistoric Egg",
" {4}§r§fPrehistoric Egg(?: §r§8x(?<amount>.*))?",
),
OIL_BARREL(
"§aOil Barrel",
" {4}§r§aOil Barrel(?: §r§8x(?<amount>.*))?",
),
DIAMOND_ESSENCE(
"§bDiamond Essence",
" {4}§r§dDiamond Essence(?: §r§8x(?<amount>.*))?",
),
GOLD_ESSENCE(
"§6Gold Essence",
" {4}§r§dGold Essence(?: §r§8x(?<amount>.*))?",
),
;
val chatPattern by RepoPattern.pattern(
"mining.powder.tracker.reward.${this.patternName()}.new",
pattern,
)
private fun patternName() = name.lowercase().replace("_", "")
}
|