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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
/*
* Copyright (C) 2022 NotEnoughUpdates contributors
*
* This file is part of NotEnoughUpdates.
*
* NotEnoughUpdates is free software: you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* NotEnoughUpdates is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>.
*/
package io.github.moulberry.notenoughupdates.options.separatesections;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.ConfigAccordionId;
import io.github.moulberry.moulconfig.annotations.ConfigEditorAccordion;
import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
import io.github.moulberry.moulconfig.annotations.ConfigEditorDropdown;
import io.github.moulberry.moulconfig.annotations.ConfigEditorSlider;
import io.github.moulberry.moulconfig.annotations.ConfigOption;
public class Enchanting {
@ConfigOption(
name = "Enchant Table / Hex GUI",
desc = ""
)
@ConfigEditorAccordion(id = 1)
public boolean tableGUIAccordion = false;
@Expose
@ConfigOption(
name = "Enable Enchant Table GUI",
desc = "Show a custom GUI when using the Enchant Table"
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
public boolean enableTableGUI = true;
@Expose
@ConfigOption(
name = "Enable Hex GUI",
desc = "Show a custom GUI when using the Hex"
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
public boolean enableHexGUI = true;
/*@Expose
@ConfigOption(
name = "Incompatible Enchants",
desc = "How to display enchants that are incompatible with your current item, eg. Smite on a sword with Sharpness"
)
@ConfigEditorDropdown(
values = {"Highlight", "Hide"}
)
@ConfigAccordionId(id = 1)
public int incompatibleEnchants = 0;*/
@Expose
@ConfigOption(
name = "Enchant Sorting",
desc = "Change the method of sorting enchants in the GUI"
)
@ConfigEditorDropdown(
values = {"By Cost", "Alphabetical"}
)
@ConfigAccordionId(id = 1)
public int enchantSorting = 0;
@Expose
@ConfigOption(
name = "Enchant Ordering",
desc = "Change the method of ordering used by the sort"
)
@ConfigEditorDropdown(
values = {"Ascending", "Descending"}
)
@ConfigAccordionId(id = 1)
public int enchantOrdering = 0;
@Expose
@ConfigOption(
name = "Use highest level from /et in /hex",
desc = "Show max level from /et in hex instead of highest possible"
)
@ConfigEditorBoolean()
@ConfigAccordionId(id = 1)
public boolean maxEnchLevel = false;
@ConfigOption(
name = "Enchanting Solvers",
desc = ""
)
@ConfigEditorAccordion(id = 0)
public boolean enchantingSolversAccordion = false;
@Expose
@ConfigOption(
name = "Enable Solvers",
desc = "Turn on solvers for the experimentation table"
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean enableEnchantingSolvers = true;
//In an email from Donpireso (admin) he says not sending a packet at all isn't bannable
//https://i.imgur.com/VTmGSVP.png
@Expose
@ConfigOption(
name = "Prevent Misclicks",
desc = "Prevent accidentally failing the Chronomatron and Ultrasequencer experiments"
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean preventMisclicks1 = false;
@Expose
@ConfigOption(
name = "Hide Tooltips",
desc = "Hide the tooltip of items in the Chronomatron and Ultrasequencer experiments"
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean hideTooltips = true;
@Expose
@ConfigOption(
name = "Ultrasequencer Numbers",
desc = "Replace the items in the Ultrasequencer with only numbers"
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean seqNumbers = false;
@Expose
@ConfigOption(
name = "Show Next Click In Chronomatron",
desc = "Shows what block you need to click next in Chronomatron"
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean showNextClick = true;
@Expose
@ConfigOption(
name = "Hide Buttons",
desc = "Hide Inventory Buttons and Quick Commands while in the experimentation table"
)
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean hideButtons = false;
@Expose
@ConfigOption(
name = "Ultrasequencer Next",
desc = "Set the colour of the glass pane shown behind the element in the ultrasequencer which is next"
)
@ConfigEditorDropdown(
values = {
"None", "White", "Orange", "Light Purple", "Light Blue", "Yellow", "Light Green", "Pink",
"Gray", "Light Gray", "Cyan", "Dark Purple", "Dark Blue", "Brown", "Dark Green", "Red", "Black"
}
)
@ConfigAccordionId(id = 0)
public int seqNext = 6;
@Expose
@ConfigOption(
name = "Ultrasequencer Upcoming",
desc = "Set the colour of the glass pane shown behind the element in the ultrasequencer which is coming after \"next\""
)
@ConfigEditorDropdown(
values = {
"None", "White", "Orange", "Light Purple", "Light Blue", "Yellow", "Light Green", "Pink",
"Gray", "Light Gray", "Cyan", "Dark Purple", "Dark Blue", "Brown", "Dark Green", "Red", "Black"
}
)
@ConfigAccordionId(id = 0)
public int seqUpcoming = 5;
@Expose
@ConfigOption(
name = "Superpairs Matched",
desc = "Set the colour of the glass pane shown behind successfully matched pairs"
)
@ConfigEditorDropdown(
values = {
"None", "White", "Orange", "Light Purple", "Light Blue", "Yellow", "Light Green", "Pink",
"Gray", "Light Gray", "Cyan", "Dark Purple", "Dark Blue", "Brown", "Dark Green", "Red", "Black"
}
)
@ConfigAccordionId(id = 0)
public int supMatched = 6;
@Expose
@ConfigOption(
name = "Superpairs Possible",
desc = "Set the colour of the glass pane shown behind pairs which can be matched, but have not yet"
)
@ConfigEditorDropdown(
values = {
"None", "White", "Orange", "Light Purple", "Light Blue", "Yellow", "Light Green", "Pink",
"Gray", "Light Gray", "Cyan", "Dark Purple", "Dark Blue", "Brown", "Dark Green", "Red", "Black"
}
)
@ConfigAccordionId(id = 0)
public int supPossible = 2;
@Expose
@ConfigOption(
name = "Superpairs Unmatched",
desc = "Set the colour of the glass pane shown behind pairs which have been previously uncovered"
)
@ConfigEditorDropdown(
values = {
"None", "White", "Orange", "Light Purple", "Light Blue", "Yellow", "Light Green", "Pink",
"Gray", "Light Gray", "Cyan", "Dark Purple", "Dark Blue", "Brown", "Dark Green", "Red", "Black"
}
)
@ConfigAccordionId(id = 0)
public int supUnmatched = 5;
@Expose
@ConfigOption(
name = "Superpairs Powerups",
desc = "Set the colour of the glass pane shown behind powerups"
)
@ConfigEditorDropdown(
values = {
"None", "White", "Orange", "Light Purple", "Light Blue", "Yellow", "Light Green", "Pink",
"Gray", "Light Gray", "Cyan", "Dark Purple", "Dark Blue", "Brown", "Dark Green", "Red", "Black"
}
)
@ConfigAccordionId(id = 0)
public int supPower = 11;
@Expose
@ConfigOption(
name = "Hex Overpay Warning",
desc = "Warns you before you would pay more than this amount of coins for an item in the /hex"
)
@ConfigEditorSlider(minValue = 0, maxValue = 500_000_000, minStep = 1)
public double hexOverpayWarning = 10_000_000;
}
|