@@ -42,6 +42,7 @@ public final class ModArmorstatus {
4242 */
4343 public static final SimpleOption <Boolean > ENABLED = SimpleOption .<Boolean >builder ()
4444 .node ("armorstatus" , "enabled" ).type (TypeToken .get (Boolean .class ))
45+ .defaultValue (true )
4546 .notifyClient ()
4647 .build ();
4748
@@ -52,7 +53,8 @@ public final class ModArmorstatus {
5253 */
5354 public static final NumberOption <Float > SCALE = NumberOption .<Float >number ()
5455 .node ("armorstatus" , "scale" ).type (TypeToken .get (Float .class ))
55- .min (0.5F ).max (1.5F )
56+ .min (0.25F ).max (5.0F )
57+ .defaultValue (1.0F )
5658 .notifyClient ()
5759 .build ();
5860
@@ -63,6 +65,7 @@ public final class ModArmorstatus {
6365 */
6466 public static final SimpleOption <Boolean > MOVE_ARMOR_INDIVIDUALLY = SimpleOption .<Boolean >builder ()
6567 .node ("armorstatus" , "move-armor-individually" ).type (TypeToken .get (Boolean .class ))
68+ .defaultValue (false )
6669 .notifyClient ()
6770 .build ();
6871
@@ -73,6 +76,7 @@ public final class ModArmorstatus {
7376 */
7477 public static final SimpleOption <Boolean > HIDE_UNBREAKABLE_DURABILITY = SimpleOption .<Boolean >builder ()
7578 .node ("armorstatus" , "hide-unbreakable-durability" ).type (TypeToken .get (Boolean .class ))
79+ .defaultValue (false )
7680 .notifyClient ()
7781 .build ();
7882
@@ -83,6 +87,7 @@ public final class ModArmorstatus {
8387 */
8488 public static final SimpleOption <Boolean > ITEM_NAME = SimpleOption .<Boolean >builder ()
8589 .node ("armorstatus" , "item-name" ).type (TypeToken .get (Boolean .class ))
90+ .defaultValue (false )
8691 .notifyClient ()
8792 .build ();
8893
@@ -93,6 +98,7 @@ public final class ModArmorstatus {
9398 */
9499 public static final SimpleOption <Boolean > ITEM_COUNT = SimpleOption .<Boolean >builder ()
95100 .node ("armorstatus" , "item-count" ).type (TypeToken .get (Boolean .class ))
101+ .defaultValue (true )
96102 .notifyClient ()
97103 .build ();
98104
@@ -103,16 +109,19 @@ public final class ModArmorstatus {
103109 */
104110 public static final SimpleOption <Boolean > SHOW_WHILE_TYPING = SimpleOption .<Boolean >builder ()
105111 .node ("armorstatus" , "show-while-typing" ).type (TypeToken .get (Boolean .class ))
112+ .defaultValue (false )
106113 .notifyClient ()
107114 .build ();
108115
109116 /**
110- * No documentation available .
117+ * Adds a shadow to text .
111118 *
112119 * @since 1.0.0
113120 */
114121 public static final SimpleOption <Boolean > TEXT_SHADOW = SimpleOption .<Boolean >builder ()
122+ .comment ("Adds a shadow to text" )
115123 .node ("armorstatus" , "text-shadow" ).type (TypeToken .get (Boolean .class ))
124+ .defaultValue (true )
116125 .notifyClient ()
117126 .build ();
118127
@@ -123,6 +132,7 @@ public final class ModArmorstatus {
123132 */
124133 public static final SimpleOption <Boolean > DAMAGE_OVERLAY = SimpleOption .<Boolean >builder ()
125134 .node ("armorstatus" , "damage-overlay" ).type (TypeToken .get (Boolean .class ))
135+ .defaultValue (true )
126136 .notifyClient ()
127137 .build ();
128138
@@ -133,6 +143,7 @@ public final class ModArmorstatus {
133143 */
134144 public static final SimpleOption <Boolean > ITEM_DAMAGE = SimpleOption .<Boolean >builder ()
135145 .node ("armorstatus" , "item-damage" ).type (TypeToken .get (Boolean .class ))
146+ .defaultValue (true )
136147 .notifyClient ()
137148 .build ();
138149
@@ -143,6 +154,7 @@ public final class ModArmorstatus {
143154 */
144155 public static final SimpleOption <Boolean > ARMOR_DAMAGE = SimpleOption .<Boolean >builder ()
145156 .node ("armorstatus" , "armor-damage" ).type (TypeToken .get (Boolean .class ))
157+ .defaultValue (true )
146158 .notifyClient ()
147159 .build ();
148160
@@ -153,6 +165,7 @@ public final class ModArmorstatus {
153165 */
154166 public static final SimpleOption <Boolean > MAX_DAMAGE = SimpleOption .<Boolean >builder ()
155167 .node ("armorstatus" , "max-damage" ).type (TypeToken .get (Boolean .class ))
168+ .defaultValue (false )
156169 .notifyClient ()
157170 .build ();
158171
@@ -163,6 +176,7 @@ public final class ModArmorstatus {
163176 */
164177 public static final SimpleOption <Boolean > STATIC_DAMAGE_COLORS = SimpleOption .<Boolean >builder ()
165178 .node ("armorstatus" , "static-damage-colors" ).type (TypeToken .get (Boolean .class ))
179+ .defaultValue (false )
166180 .notifyClient ()
167181 .build ();
168182
@@ -173,6 +187,7 @@ public final class ModArmorstatus {
173187 */
174188 public static final SimpleOption <Color > NAME_TEXT_COLOR = SimpleOption .<Color >builder ()
175189 .node ("armorstatus" , "name-text-color" ).type (TypeToken .get (Color .class ))
190+ .defaultValue (new Color (255 , 255 , 255 ))
176191 .notifyClient ()
177192 .build ();
178193
@@ -183,6 +198,7 @@ public final class ModArmorstatus {
183198 */
184199 public static final SimpleOption <Color > HIGHEST_COLOR = SimpleOption .<Color >builder ()
185200 .node ("armorstatus" , "highest-color" ).type (TypeToken .get (Color .class ))
201+ .defaultValue (new Color (255 , 255 , 255 ))
186202 .notifyClient ()
187203 .build ();
188204
@@ -193,6 +209,7 @@ public final class ModArmorstatus {
193209 */
194210 public static final SimpleOption <Color > HIGH_COLOR = SimpleOption .<Color >builder ()
195211 .node ("armorstatus" , "high-color" ).type (TypeToken .get (Color .class ))
212+ .defaultValue (new Color (85 , 255 , 85 ))
196213 .notifyClient ()
197214 .build ();
198215
@@ -203,6 +220,7 @@ public final class ModArmorstatus {
203220 */
204221 public static final SimpleOption <Color > MEDIUM_COLOR = SimpleOption .<Color >builder ()
205222 .node ("armorstatus" , "medium-color" ).type (TypeToken .get (Color .class ))
223+ .defaultValue (new Color (255 , 255 , 85 ))
206224 .notifyClient ()
207225 .build ();
208226
@@ -213,6 +231,7 @@ public final class ModArmorstatus {
213231 */
214232 public static final SimpleOption <Color > MEDIUM_LOW_COLOR = SimpleOption .<Color >builder ()
215233 .node ("armorstatus" , "medium-low-color" ).type (TypeToken .get (Color .class ))
234+ .defaultValue (new Color (255 , 170 , 0 ))
216235 .notifyClient ()
217236 .build ();
218237
@@ -223,6 +242,7 @@ public final class ModArmorstatus {
223242 */
224243 public static final SimpleOption <Color > LOW_COLOR = SimpleOption .<Color >builder ()
225244 .node ("armorstatus" , "low-color" ).type (TypeToken .get (Color .class ))
245+ .defaultValue (new Color (255 , 85 , 85 ))
226246 .notifyClient ()
227247 .build ();
228248
@@ -233,6 +253,7 @@ public final class ModArmorstatus {
233253 */
234254 public static final SimpleOption <Color > LOWEST_COLOR = SimpleOption .<Color >builder ()
235255 .node ("armorstatus" , "lowest-color" ).type (TypeToken .get (Color .class ))
256+ .defaultValue (new Color (170 , 0 , 0 ))
236257 .notifyClient ()
237258 .build ();
238259
0 commit comments