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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
|
{
"argument.color.rgb.incomplete": "Incomplete (expected 3 color values).",
"argument.color.hex.invalidString": "Hex integer must be exactly 6 characters long, found %d characters.",
"argument.color.hex.invalidChar": "Invalid character for hex integer: %s. Valid characters: [0-9a-fA-F]",
"key.categories.skyblocker": "Skyblocker",
"key.hotbarSlotLock": "Slot Lock (Hotbar)",
"key.skyblocker.toggleB": "Toggle tab HUD to screen B",
"key.skyblocker.defaultTgl": "Switch tab HUD to default view",
"key.skyblocker.toggleA": "Toggle tab HUD to screen A",
"key.wikiLookup": "Wiki Lookup",
"key.itemProtection": "Protect Item",
"text.skyblocker.open": "Open",
"text.skyblocker.quit_config": "Changes Not Saved",
"text.skyblocker.quit_config_sure": "Are you sure you want to quit editing the config? Changes will not be saved!",
"text.skyblocker.quit_discard": "Quit & Discard Changes",
"text.skyblocker.confirm": "Confirm",
"text.skyblocker.config": "Open Config...",
"text.skyblocker.source": "Source",
"text.skyblocker.website": "Website",
"text.skyblocker.translate": "Translate",
"text.skyblocker.modrinth": "Modrinth",
"text.skyblocker.discord": "Discord",
"skyblocker.skyblockerScreen": "Skyblocker Main Screen",
"skyblocker.config.title": "Skyblocker Settings",
"skyblocker.config.crimsonIsle": "Crimson Isle",
"skyblocker.config.crimsonIsle.kuudra": "Kuudra",
"skyblocker.config.crimsonIsle.kuudra.arrowPoisonThreshold": "Arrow Poison Warning Threshold",
"skyblocker.config.crimsonIsle.kuudra.arrowPoisonThreshold.@Tooltip": "If the amount of Toxic Arrow Poison you have in your inventory is below the set threshold, then you will receive a warning.\n\n16 is the absolute minimum.\nYou want 32 for smooth 'DPS' phase with prefire.",
"skyblocker.config.crimsonIsle.kuudra.ballistaBuildWaypoints": "Ballista Build Spot Waypoints",
"skyblocker.config.crimsonIsle.kuudra.fuelWaypoints": "Fuel Waypoints",
"skyblocker.config.crimsonIsle.kuudra.noArrowPoisonWarning": "No Arrow Poison Warning",
"skyblocker.config.crimsonIsle.kuudra.noArrowPoisonWarning.@Tooltip": "Warns you when you pull out a bow and have no Toxic Arrow Poison in your inventory. Only works during the DPS phase.",
"skyblocker.config.crimsonIsle.kuudra.pearlWaypoints": "Pearl Waypoints",
"skyblocker.config.crimsonIsle.kuudra.safeSpotWaypoints": "Safe Spot Waypoints",
"skyblocker.config.crimsonIsle.kuudra.suppliesAndFuelWaypointType": "Supplies/Fuel Waypoint Type",
"skyblocker.config.crimsonIsle.kuudra.supplyWaypoints": "Supply Waypoints",
"skyblocker.config.dungeons": "Dungeons",
"skyblocker.config.dungeons.allowDroppingProtectedItems": "Enabled Dropping Protected Items & on Locked Slots",
"skyblocker.config.dungeons.allowDroppingProtectedItems.@Tooltip": "Allows the use of class abilities in Dungeons on a locked slot or while holding an item which has been protected using /skyblocker protectItem.",
"skyblocker.config.dungeons.croesusHelper": "Croesus Helper",
"skyblocker.config.dungeons.croesusHelper.@Tooltip": "Gray out chests that have already been opened.",
"skyblocker.config.dungeons.devices": "Device Solvers (F7/M7)",
"skyblocker.config.dungeons.devices.solveLightsOn": "Solve Lights On",
"skyblocker.config.dungeons.devices.solveLightsOn.@Tooltip": "Highlights the correct levers to click in red",
"skyblocker.config.dungeons.devices.solveSimonSays": "Solve Simon Says",
"skyblocker.config.dungeons.devices.solveSimonSays.@Tooltip": "Highlights the correct button to click in green, and highlights the next one in yellow.",
"skyblocker.config.dungeons.doorHighlight": "Door Highlight",
"skyblocker.config.dungeons.doorHighlight.doorHighlightType": "Door Highlight Type",
"skyblocker.config.dungeons.doorHighlight.doorHighlightType.@Tooltip": "Highlight: Only displays a highlight.\n\nOutlined Highlight: Displays both a highlight and an outline.\n\nOutline: Only displays an outline.",
"skyblocker.config.dungeons.doorHighlight.doorHighlightType.secretWaypointsNote": "\n\n\nNote: Dungeon Secret Waypoints must be enabled for this to work.",
"skyblocker.config.dungeons.doorHighlight.enableDoorHighlight": "Enable Door Highlight",
"skyblocker.config.dungeons.doorHighlight.enableDoorHighlight.@Tooltip": "Highlights wither and blood doors red if locked and green if unlocked.",
"skyblocker.config.dungeons.dungeonChestProfit": "Dungeon Chest Profit Calculator",
"skyblocker.config.dungeons.dungeonChestProfit.croesusProfit": "Croesus Chest Profit Calculator",
"skyblocker.config.dungeons.dungeonChestProfit.croesusProfit.@Tooltip": "Highlights chests with the best profit at the Croesus NPC.\n\n\nThe best chest will be highlighted green.\nIf there is a chest worth using dungeon key on, it will be highlighted yellow",
"skyblocker.config.dungeons.dungeonChestProfit.enableProfitCalculator": "Enable Profit Calculator",
"skyblocker.config.dungeons.dungeonChestProfit.enableProfitCalculator.@Tooltip": "Displays the profit of a dungeon chest in the chest screen's title.\nGreen if there's profit.\nRed if there isn't profit.\nGray if you don't gain or lose anything.\nBlue if calculations were based on incomplete data.",
"skyblocker.config.dungeons.dungeonChestProfit.includeEssence": "Include Essence",
"skyblocker.config.dungeons.dungeonChestProfit.includeEssence.@Tooltip": "Disabling is **not recommended** if you're a forgetful person.",
"skyblocker.config.dungeons.dungeonChestProfit.includeKismet": "Include Kismet Price",
"skyblocker.config.dungeons.dungeonChestProfit.includeKismet.@Tooltip": "When enabled, if you used a kismet, the price of one will be subtracted from the profit",
"skyblocker.config.dungeons.dungeonChestProfit.incompleteColor": "Incomplete Color",
"skyblocker.config.dungeons.dungeonChestProfit.incompleteColor.@Tooltip": "The color to display when the price data is incomplete.",
"skyblocker.config.dungeons.dungeonChestProfit.lossColor": "Loss Color",
"skyblocker.config.dungeons.dungeonChestProfit.neutralColor": "Neutral Color",
"skyblocker.config.dungeons.dungeonChestProfit.neutralThreshold": "Neutral Threshold",
"skyblocker.config.dungeons.dungeonChestProfit.neutralThreshold.@Tooltip": "The threshold below which the profit is considered neutral.",
"skyblocker.config.dungeons.dungeonChestProfit.profitColor": "Profit Color",
"skyblocker.config.dungeons.dungeonScore": "Dungeon Score",
"skyblocker.config.dungeons.dungeonScore.dungeonCryptsMessage": "Dungeon Crypts Message",
"skyblocker.config.dungeons.dungeonScore.dungeonCryptsMessage.@Tooltip": "Message which will be sent in the chat when reaching threshold score before getting 5+ crypts. The string \"[crypts]\" will be replaced with the amount of crypts.",
"skyblocker.config.dungeons.dungeonScore.dungeonCryptsMessageThreshold": "Dungeon Crypts Message Threshold",
"skyblocker.config.dungeons.dungeonScore.dungeonCryptsMessageThreshold.@Tooltip": "Default 270 is intended for S+ runs when you enter at 300+ score - which is usually F5-F7 and M5-M7. \nIf you are running S runs (enter at 270 score) then you should consider lowering this to 250 or less, otherwise it will be useless",
"skyblocker.config.dungeons.dungeonScore.dungeonScoreMessage": "Dungeon Score %d Message",
"skyblocker.config.dungeons.dungeonScore.dungeonScoreMessage.@Tooltip": "Message which will be sent in the chat when reaching %d score in dungeons. The string \"[score]\" will be replaced with the dungeon score (%d).",
"skyblocker.config.dungeons.dungeonScore.enableDungeonCryptsMessage": "Enable Dungeon Crypts Message",
"skyblocker.config.dungeons.dungeonScore.enableDungeonCryptsMessage.@Tooltip": "Sends a message in chat if less than 5 crypts are found when the score threshold is reached.",
"skyblocker.config.dungeons.dungeonScore.enableDungeonScoreMessage": "Enable Dungeon Score %d Message",
"skyblocker.config.dungeons.dungeonScore.enableDungeonScoreMessage.@Tooltip": "Sends a message in chat when reaching %d score in dungeons.",
"skyblocker.config.dungeons.dungeonScore.enableDungeonScoreSound": "Enable Dungeon Score %d Sound",
"skyblocker.config.dungeons.dungeonScore.enableDungeonScoreSound.@Tooltip": "Plays a sound when reaching %d score in dungeons.",
"skyblocker.config.dungeons.dungeonScore.enableDungeonScoreTitle": "Enable Dungeon Score %d Title",
"skyblocker.config.dungeons.dungeonScore.enableDungeonScoreTitle.@Tooltip": "Display a title when reaching %d score in dungeons.",
"skyblocker.config.dungeons.dungeonScore.enableScoreHUD": "Enable Score HUD",
"skyblocker.config.dungeons.dungeonScore.enableScoreHUD.@Tooltip": "Displays the dungeon score in the HUD.",
"skyblocker.config.dungeons.dungeonScore.enableScoreHUD.deathMessagesNote": "\n\n\nNote: This only works correctly if death messages are enabled in your skyblock settings. If you want to hide death messages, use this mod's Hide Player Death Messages setting instead to allow further processing of death messages.",
"skyblocker.config.dungeons.dungeonScore.scoreScaling": "Score Scaling",
"skyblocker.config.dungeons.fancyPartyFinder": "Fancy Party Finder",
"skyblocker.config.dungeons.hideSoulweaverSkulls": "Hide Soulweaver Skulls",
"skyblocker.config.dungeons.hideSoulweaverSkulls.@Tooltip": "Hides the Haunted Skulls spawned that are spawned as a result of using Soulweaver Gloves.",
"skyblocker.config.dungeons.livid": "Livid (F5/M5)",
"skyblocker.config.dungeons.livid.enableLividColorGlow": "Enable Livid Color Glow",
"skyblocker.config.dungeons.livid.enableLividColorGlow.@Tooltip": "Applies the glowing effect to the correct Livid in F5/M5.",
"skyblocker.config.dungeons.livid.enableLividColorText": "Enable Livid Color Text",
"skyblocker.config.dungeons.livid.enableLividColorText.@Tooltip": "Send the livid color in the chat during the Livid boss fight.",
"skyblocker.config.dungeons.livid.enableLividColorTitle": "Enable Livid Color Title",
"skyblocker.config.dungeons.livid.enableLividColorTitle.@Tooltip": "Display the livid color in the title during the Livid boss fight.",
"skyblocker.config.dungeons.livid.lividColorText": "Livid Color Text",
"skyblocker.config.dungeons.livid.lividColorText.@Tooltip": "Text which will be sent in the chat during the Livid boss fight. The string \"[color]\" will be replaced with the livid color.",
"skyblocker.config.dungeons.map": "Map",
"skyblocker.config.dungeons.map.enableMap": "Enable Map",
"skyblocker.config.dungeons.map.mapScaling": "Map Scaling",
"skyblocker.config.dungeons.map.mapScreen": "Dungeon Map & Score Placement Config...",
"skyblocker.config.dungeons.mimicMessage": "Mimic Message",
"skyblocker.config.dungeons.mimicMessage.mimicMessage": "Mimic Message",
"skyblocker.config.dungeons.mimicMessage.mimicMessage.@Tooltip": "Message which will be sent in the chat upon killing a mimic. Recommended to retain the default value.",
"skyblocker.config.dungeons.mimicMessage.sendMimicMessage": "Enable Mimic Message",
"skyblocker.config.dungeons.mimicMessage.sendMimicMessage.@Tooltip": "Sends a message in chat upon killing a mimic for other players' score calculation mods.",
"skyblocker.config.dungeons.playerSecretsTracker": "Player Secrets Tracker",
"skyblocker.config.dungeons.playerSecretsTracker.@Tooltip": "Tracks the number of secrets people in your dungeon run are doing.",
"skyblocker.config.dungeons.professor": "The Professor (F3/M3)",
"skyblocker.config.dungeons.professor.fireFreezeStaffTimer": "Fire Freeze Staff Timer (F3/M3)",
"skyblocker.config.dungeons.professor.fireFreezeStaffTimer.@Tooltip": "Display a timer when to use a Fire Freeze Staff in the F3/M3 boss fight.",
"skyblocker.config.dungeons.professor.floor3GuardianHealthDisplay": "Guardian Health Display (F3/M3)",
"skyblocker.config.dungeons.professor.floor3GuardianHealthDisplay.@Tooltip": "Displays guardian's health below them in the F3/M3 boss fight.",
"skyblocker.config.dungeons.puzzle": "Puzzle Solver",
"skyblocker.config.dungeons.puzzle.blazeSolver": "Solve Blaze Puzzle",
"skyblocker.config.dungeons.puzzle.blazeSolver.@Tooltip": "Boxes the correct blaze in green, also draws a line to and boxes the next blaze to kill in white.",
"skyblocker.config.dungeons.puzzle.creeperSolver": "Solve Creeper Beams Puzzle",
"skyblocker.config.dungeons.puzzle.creeperSolver.@Tooltip": "Highlights the best beams to make and the targets to hit.",
"skyblocker.config.dungeons.puzzle.solveBoulder": "Solve Boulder Puzzle",
"skyblocker.config.dungeons.puzzle.solveBoulder.@Tooltip": "Draws a line to the chest and highlight button",
"skyblocker.config.dungeons.puzzle.solveIceFill": "Solve Ice Fill Puzzle",
"skyblocker.config.dungeons.puzzle.solveSilverfish": "Solve Silverfish Puzzle",
"skyblocker.config.dungeons.puzzle.solveThreeWeirdos": "Solve Three Weirdos Puzzle",
"skyblocker.config.dungeons.puzzle.solveTicTacToe": "Solve Tic Tac Toe Puzzle",
"skyblocker.config.dungeons.puzzle.solveTicTacToe.@Tooltip": "Puts a red box around the next best move for you to make!",
"skyblocker.config.dungeons.puzzle.solveTrivia": "Solve Trivia Puzzle",
"skyblocker.config.dungeons.puzzle.solveWaterboard": "Solve Waterboard Puzzle",
"skyblocker.config.dungeons.puzzle.solveWaterboard.@Tooltip": "Click the levers with green boxes to solve the puzzle.",
"skyblocker.config.dungeons.secretWaypoints": "Dungeon Secret Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableAotvWaypoints": "Enable AOTV Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableBatWaypoints": "Enable Bat Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableChestWaypoints": "Enable Chest Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableDefaultWaypoints": "Enable Default Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableDefaultWaypoints.@Tooltip": "This includes all waypoints that do not belong to a category.",
"skyblocker.config.dungeons.secretWaypoints.enableEntranceWaypoints": "Enable Entrance Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableFairySoulWaypoints": "Enable Fairy Soul Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableItemWaypoints": "Enable Item Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableLeverWaypoints": "Enable Lever Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enablePearlWaypoints": "Enable Pearl Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enablePearlWaypoints.@Tooltip": "With these waypoints, you throw a pearl towards the block and at the same time AOTV up.",
"skyblocker.config.dungeons.secretWaypoints.enableRoomMatching": "Enable Room Matching",
"skyblocker.config.dungeons.secretWaypoints.enableRoomMatching.@Tooltip": "Disabling this option can save around 20 MB of RAM, but Secret Waypoint and \u00a7lsome puzzle solvers \u00a7rrequire this option to be enabled.",
"skyblocker.config.dungeons.secretWaypoints.enableSecretWaypoints": "Enable Dungeon Secret Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableStonkWaypoints": "Enable Stonk Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableSuperboomWaypoints": "Enable Superboom Waypoints",
"skyblocker.config.dungeons.secretWaypoints.enableWitherWaypoints": "Enable Wither Essence Waypoints",
"skyblocker.config.dungeons.secretWaypoints.showSecretText": "Show Secret Text",
"skyblocker.config.dungeons.secretWaypoints.waypointType": "Waypoint Type",
"skyblocker.config.dungeons.secretWaypoints.waypointType.@Tooltip": "Waypoint: Displays a highlight and a beacon beam.\n\nOutlined Waypoint: Displays both a waypoint and an outline.\n\nHighlight: Only displays a highlight.\n\nOutlined Highlight: Displays both a highlight and an outline.\n\nOutline: Only displays an outline.",
"skyblocker.config.dungeons.secretWaypoints.waypointType.generalNote": "\n\n\nThis option does not apply to all waypoints. Some waypoints such as secret waypoints have their own waypoint type option.",
"skyblocker.config.dungeons.starredMobBoundingBoxes": "Starred Mob Bounding Boxes",
"skyblocker.config.dungeons.starredMobBoundingBoxes.@Tooltip": "Draws the bounding boxes of starred mobs.",
"skyblocker.config.dungeons.starredMobGlow": "Starred Mob Glow",
"skyblocker.config.dungeons.starredMobGlow.@Tooltip": "Applies the glowing effect to starred mobs that are visible.\n\nWARNING: This feature is experimental and you may encounter issues with it.",
"skyblocker.config.dungeons.terminals": "Terminal Solvers (F7/M7)",
"skyblocker.config.dungeons.terminals.blockIncorrectClicks": "Block Incorrect Clicks",
"skyblocker.config.dungeons.terminals.solveColor": "Solve Select Colored",
"skyblocker.config.dungeons.terminals.solveOrder": "Solve Click In Order",
"skyblocker.config.dungeons.terminals.solveStartsWith": "Solve Starts With",
"skyblocker.config.farming": "Farming",
"skyblocker.config.farming.garden": "Garden",
"skyblocker.config.farming.garden.dicerTitlePrevent": "Enable Dicer Title Prevent",
"skyblocker.config.farming.garden.enableHud": "Enable Farming HUD",
"skyblocker.config.farming.garden.farmingHud": "Farming HUD Config...",
"skyblocker.config.farming.garden.lockMouseGround": "Only lock camera when on the ground",
"skyblocker.config.farming.garden.lockMouseTool": "Lock camera when holding a farming tool",
"skyblocker.config.farming.garden.visitorHelper": "Visitor helper",
"skyblocker.config.foraging": "Foraging",
"skyblocker.config.foraging.hunting": "Hunting",
"skyblocker.config.general": "General",
"skyblocker.config.general.chestValue.@Tooltip": "Calculate the value of this container.",
"skyblocker.config.general.enableTips": "Enable Tips",
"skyblocker.config.general.acceptReparty": "Auto accept Reparty",
"skyblocker.config.uiAndVisuals.hideEmptyTooltips": "Hide empty item tooltips in menus",
"skyblocker.config.general.hitbox": "Hitboxes",
"skyblocker.config.general.hitbox.oldFarmlandHitbox": "Enable 1.8 farmland hitbox",
"skyblocker.config.general.hitbox.oldLeverHitbox": "Enable 1.8 lever hitbox",
"skyblocker.config.general.itemInfoDisplay": "Item Info Display",
"skyblocker.config.general.itemInfoDisplay.attributeShardInfo": "Attribute Shard Info",
"skyblocker.config.general.itemInfoDisplay.attributeShardInfo.@Tooltip": "Displays the attribute's level and the initials of the attribute's name on the slot containing the item.",
"skyblocker.config.general.itemInfoDisplay.itemRarityBackgroundStyle": "Item Rarity Background Style",
"skyblocker.config.general.itemInfoDisplay.itemRarityBackgroundStyle.@Tooltip": "Choose between a circular or a square background style!",
"skyblocker.config.general.itemInfoDisplay.itemRarityBackgrounds": "Item Rarity Backgrounds",
"skyblocker.config.general.itemInfoDisplay.itemRarityBackgrounds.@Tooltip": "Displays a colored background behind an item, the color represents the item's rarity.",
"skyblocker.config.general.itemInfoDisplay.itemRarityBackgroundsOpacity": "Item Rarity Backgrounds Opacity",
"skyblocker.config.general.itemInfoDisplay.slotText": "Slot Text",
"skyblocker.config.general.itemInfoDisplay.slotText.@Tooltip": "Displays information such as enchantment book level, minion level, pet level, potion level, prehistoric egg blocks walked, rancher's boots speed cap, and skill level",
"skyblocker.config.general.itemList": "Item List",
"skyblocker.config.general.itemList.enableItemList": "Enable Item List",
"skyblocker.config.general.itemProtection": "Item Protection",
"skyblocker.config.general.itemProtection.slotLockStyle": "Slot Lock Icon Style",
"skyblocker.config.general.itemProtection.slotLockStyle.@Tooltip": "Choose between the fancy or the classic slot lock icon.",
"skyblocker.config.general.itemTooltip": "Item Tooltip",
"skyblocker.config.general.itemTooltip.avg": "Average Type",
"skyblocker.config.general.itemTooltip.avg.@Tooltip": "You can choose how many days of average price to be",
"skyblocker.config.general.itemTooltip.avg.BOTH": "Both",
"skyblocker.config.general.itemTooltip.avg.ONE_DAY": "1-day price",
"skyblocker.config.general.itemTooltip.avg.THREE_DAY": "3-day price",
"skyblocker.config.general.itemTooltip.dungeonQuality": "Dungeon Quality",
"skyblocker.config.general.itemTooltip.dungeonQuality.@Tooltip": "Displays quality and tier of dungeon drops from mobs.\n\n\nReminder:\nTier 1-3 dropped from F1-F3\nTier 4-7 dropped from F4-F7 or M1-M4\nTier 8-10 are dropped only from M5-M7",
"skyblocker.config.general.itemTooltip.enableAccessoriesHelper": "Enable Accessories Helper",
"skyblocker.config.general.itemTooltip.enableAccessoriesHelper.@Tooltip[0]": "When hovering over an accessory, you are informed about whether you already have it or not, and whether it's worse than what you have already collected or better. List of Statuses:",
"skyblocker.config.general.itemTooltip.enableAccessoriesHelper.@Tooltip[1]": "You have the highest tier accessory from that family.",
"skyblocker.config.general.itemTooltip.enableAccessoriesHelper.@Tooltip[2]": "This accessory is an upgrade from the one that you already have in the same family. Also shows you what tier this accessory is in its family.",
"skyblocker.config.general.itemTooltip.enableAccessoriesHelper.@Tooltip[3]": "This accessory can be upgraded. Also tells you what tier of accessory you have in that family.",
"skyblocker.config.general.itemTooltip.enableAccessoriesHelper.@Tooltip[4]": "You already own an accessory in the same family that is better than this one. Also tells you what tier of accessory you have in that family.",
"skyblocker.config.general.itemTooltip.enableAccessoriesHelper.@Tooltip[5]": "You don't own any accessory from this family.",
"skyblocker.config.general.itemTooltip.enableAvgBIN": "Enable Avg. BIN Price",
"skyblocker.config.general.itemTooltip.enableBazaarPrice": "Enable Bazaar buy/sell Price",
"skyblocker.config.general.itemTooltip.craft": "Crafting Cost",
"skyblocker.config.general.itemTooltip.craft.@Tooltip": "You can choose which Bazaar order type to use in crafting calculation",
"skyblocker.config.general.itemTooltip.craft.OFF": "Off",
"skyblocker.config.general.itemTooltip.craft.SELL_ORDER": "Sell Order",
"skyblocker.config.general.itemTooltip.craft.BUY_ORDER": "Buy Order",
"skyblocker.config.general.itemTooltip.enableExoticTooltip": "Enable Exotic Tooltip",
"skyblocker.config.general.itemTooltip.enableExoticTooltip.@Tooltip": "Displays the type of exotic below the item's name if an armor piece is exotic.",
"skyblocker.config.general.itemTooltip.enableLowestBIN": "Enable Lowest BIN Price",
"skyblocker.config.general.itemTooltip.enableMotesPrice": "Enable Motes Price",
"skyblocker.config.general.itemTooltip.enableMotesPrice.@Tooltip": "Displays the Motes sell price of an item while in The Rift.",
"skyblocker.config.general.itemTooltip.enableMuseumInfo": "Enable Museum Info",
"skyblocker.config.general.itemTooltip.enableMuseumInfo.@Tooltip": "If this item is donatable to the museum, then the item's category in the museum is displayed. It also displays a marker indicating whether you've donated that item to your museum or not (freebies not yet supported).\n\nMake sure to enable your Museum API for accurate information!",
"skyblocker.config.general.itemTooltip.enableNPCPrice": "Enable NPC Price",
"skyblocker.config.general.itemTooltip.enableObtainedDate": "Enable Obtained Date",
"skyblocker.config.general.itemTooltip.showEssenceCost": "Show Essence Cost",
"skyblocker.config.general.quiverWarning": "Quiver Warning",
"skyblocker.config.general.quiverWarning.enableQuiverWarning": "Enable Quiver Warning",
"skyblocker.config.general.quiverWarning.enableQuiverWarningAfterDungeon": "Enable Quiver Warning After a Dungeon",
"skyblocker.config.general.quiverWarning.enableQuiverWarningInDungeons": "Enable Quiver Warning In Dungeons",
"skyblocker.config.general.searchOverlay.historyLabel": "History:",
"skyblocker.config.general.searchOverlay.starsTooltip": "Star count for dungeon items",
"skyblocker.config.general.searchOverlay.maxPet": "Max Pet Level",
"skyblocker.config.general.searchOverlay.maxPet.@Tooltip": "Only show pets that are max level",
"skyblocker.config.general.shortcuts": "Shortcuts",
"skyblocker.config.general.shortcuts.config": "Shortcuts Config...",
"skyblocker.config.general.shortcuts.enableCommandArgShortcuts": "Enable Command Argument Shortcuts",
"skyblocker.config.general.shortcuts.enableCommandArgShortcuts.@Tooltip": "Shortcuts that replace one or more word(s)/argument(s) of a command which has multiple words/arguments. Edit shortcuts with \"/skyblocker shortcuts\". Shortcuts must be enabled for this to take effect.",
"skyblocker.config.general.shortcuts.enableCommandShortcuts": "Enable Command Shortcuts",
"skyblocker.config.general.shortcuts.enableCommandShortcuts.@Tooltip": "Shortcuts for commands consisting of only one word. Edit shortcuts with \"/skyblocker shortcuts\". Shortcuts must be enabled for this to take effect.",
"skyblocker.config.general.shortcuts.enableShortcuts": "Enable Shortcuts",
"skyblocker.config.general.shortcuts.enableShortcuts.@Tooltip": "Works anywhere, even in vanilla! Edit shortcuts with \"/skyblocker shortcuts\". At least one of the following options must be enabled for this to take effect.",
"skyblocker.config.general.specialEffects": "Special Effects",
"skyblocker.config.general.specialEffects.rareDungeonDropEffects": "Rare Dungeon Drop Effects",
"skyblocker.config.general.specialEffects.rareDungeonDropEffects.@Tooltip": "Adds a special visual effect triggered upon obtaining rare dungeon loot!",
"skyblocker.config.general.wikiLookup": "Wiki Lookup",
"skyblocker.config.general.wikiLookup.enableWikiLookup": "Enable Wiki Lookup",
"skyblocker.config.general.wikiLookup.enableWikiLookup.@Tooltip": "Opens the wiki page of the hovered item with the F4 key.",
"skyblocker.config.general.wikiLookup.officialWiki": "Use Official Wiki",
"skyblocker.config.general.wikiLookup.officialWiki.@Tooltip": "Use the official wiki instead of the Fandom wiki.",
"skyblocker.config.helpers": "Helpers",
"skyblocker.config.helpers.bazaar": "Bazaar",
"skyblocker.config.helpers.bazaar.enableBazaarHelper": "Enable Bazaar Helper",
"skyblocker.config.helpers.bazaar.enableBazaarHelper.@Tooltip": "Draws icons on top of orders to explain the current state of the order.\n\n%s: Order is going to expire soon\n%s: Order has expired\n%s: Order is filled to some degree and there are items/coins to claim\n%s: Order is filled",
"skyblocker.config.helpers.chocolateFactory": "Chocolate Factory",
"skyblocker.config.helpers.chocolateFactory.enableChocolateFactoryHelper": "Enable Chocolate Factory Helper",
"skyblocker.config.helpers.chocolateFactory.enableChocolateFactoryHelper.@Tooltip": "Highlights the best upgrade when enabled. \n\nThe best upgrade is marked as green, but if you can't afford it, it's marked as yellow while marking the next best upgrade that you can afford as green.",
"skyblocker.config.helpers.chocolateFactory.enableEggFinder": "Enable Egg Finder",
"skyblocker.config.helpers.chocolateFactory.enableEggFinder.@Tooltip": "Highlights eggs from Hoppity's Hunt.",
"skyblocker.config.helpers.chocolateFactory.enableTimeTowerReminder": "Enable Time Tower Reminder",
"skyblocker.config.helpers.chocolateFactory.enableTimeTowerReminder.@Tooltip": "Sends a message in chat when your Time Tower deactivates.",
"skyblocker.config.helpers.chocolateFactory.sendEggFoundMessages": "Send Egg Found Messages",
"skyblocker.config.helpers.chocolateFactory.sendEggFoundMessages.@Tooltip": "Sends a message in chat when an egg is found in the current island.",
"skyblocker.config.helpers.chocolateFactory.straySound": "Stray Rabbit Sound",
"skyblocker.config.helpers.chocolateFactory.straySound.@Tooltip": "Repeatedly plays a ding while a stray rabbit is present. If it is golden, the sound will be more frequent and different.",
"skyblocker.config.helpers.chocolateFactory.waypointType": "Egg Waypoint Type",
"skyblocker.config.helpers.chocolateFactory.waypointType.@Tooltip": "Waypoint: Displays a highlight and a beacon beam.\n\nOutlined Waypoint: Displays both a waypoint and an outline.\n\nHighlight: Only displays a highlight.\n\nOutlined Highlight: Displays both a highlight and an outline.\n\nOutline: Only displays an outline.",
"skyblocker.config.helpers.enableNewYearCakesHelper": "Enable New Year Cakes Helper",
"skyblocker.config.helpers.enableNewYearCakesHelper.@Tooltip": "Highlights the missing new year cakes green and the cakes you have already red.\n\nRequires you to open your cake bag at least once to work.",
"skyblocker.config.helpers.experiments": "Experiments Solver",
"skyblocker.config.helpers.experiments.enableChronomatronSolver": "Enable Chronomatron Solver",
"skyblocker.config.helpers.experiments.enableSuperpairsSolver": "Enable Superpairs Solver",
"skyblocker.config.helpers.experiments.enableUltrasequencerSolver": "Enable Ultrasequencer Solver",
"skyblocker.config.helpers.fairySouls": "Fairy Souls Helper",
"skyblocker.config.helpers.fairySouls.enableFairySoulsHelper": "Enable Fairy Souls Helper",
"skyblocker.config.helpers.fairySouls.highlightFoundSouls": "Highlight found fairy souls",
"skyblocker.config.helpers.fairySouls.highlightOnlyNearbySouls": "Only highlight nearby fairy souls",
"skyblocker.config.helpers.fairySouls.highlightOnlyNearbySouls.@Tooltip": "When enabled only fairy souls in a radius of 50 blocks are highlighted",
"skyblocker.config.helpers.fishing": "Fishing Helper",
"skyblocker.config.helpers.fishing.changeTimerColor": "Change Timer At 20s",
"skyblocker.config.helpers.fishing.changeTimerColor.@Tooltip": "Changes timer to green after 20 seconds has passed",
"skyblocker.config.helpers.fishing.enableFishingHelper": "Enable Fishing Helper",
"skyblocker.config.helpers.fishing.enableFishingTimer": "Enable Timer",
"skyblocker.config.helpers.fishing.enableFishingTimer.@Tooltip": "Display fishing time above bobber",
"skyblocker.config.helpers.fishing.fishingTimerScale": "Fishing Timer Scale",
"skyblocker.config.helpers.fishing.fishingTimerScale.@Tooltip": "How big to display the fishing timer",
"skyblocker.config.helpers.fishing.hideOtherPlayers": "Hide Other Players Rods",
"skyblocker.config.helpers.fishing.hideOtherPlayers.@Tooltip": "Hide other players' fishing rods from showing for you",
"skyblocker.config.helpers.jerry": "Jerry",
"skyblocker.config.helpers.jerry.enableJerryTimer": "Enable Jerry Timer",
"skyblocker.config.helpers.jerry.enableJerryTimer.@Tooltip": "Sends a message in chat and plays a sound when the hidden jerry spawn cooldown is over.",
"skyblocker.config.helpers.mythologicalRitual": "Mythological Ritual Helper",
"skyblocker.config.helpers.mythologicalRitual.enableMythologicalRitualHelper": "Enable Mythological Ritual Helper",
"skyblocker.config.chat": "Chat",
"skyblocker.config.chat.chatRules": "Custom Chat Rules",
"skyblocker.config.chat.chatRules.announcementLength": "Announcement Display Time",
"skyblocker.config.chat.chatRules.announcementLength.@Tooltip": "The amount of time the announcement will show for in ticks.",
"skyblocker.config.chat.chatRules.announcementScale": "Announcement Size",
"skyblocker.config.chat.chatRules.announcementScale.@Tooltip": "The amount to scale the size of the announcement.",
"skyblocker.config.chat.chatRules.screen": "Chat Rules Config...",
"skyblocker.config.chat.chatRules.screen.deleteQuestion": "Are you sure you want to remove this rule?",
"skyblocker.config.chat.chatRules.screen.deleteWarning": "Rule '%s' will be lost forever! (A long time!)",
"skyblocker.config.chat.chatRules.screen.editRule": "Edit",
"skyblocker.config.chat.chatRules.screen.editRule.@Tooltip": "Open config for rule.",
"skyblocker.config.chat.chatRules.screen.modify": "Modify",
"skyblocker.config.chat.chatRules.screen.new": "New Chat Rule",
"skyblocker.config.chat.chatRules.screen.ruleEnabled": "Rule Enabled",
"skyblocker.config.chat.chatRules.screen.ruleName": "Rule Name",
"skyblocker.config.chat.chatRules.screen.ruleScreen": "Chat Rule Config...",
"skyblocker.config.chat.chatRules.screen.ruleScreen.actionBar": "Show In Action Bar:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.actionBar.@Tooltip": "Show the message in your action bar.",
"skyblocker.config.chat.chatRules.screen.ruleScreen.announcement": "Show Announcement:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.announcement.@Tooltip": "Show the message in the middle of the screen.",
"skyblocker.config.chat.chatRules.screen.ruleScreen.false": "False",
"skyblocker.config.chat.chatRules.screen.ruleScreen.filter": "Filter:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.filter.@Tooltip": "The string/regex to match a chat message to.",
"skyblocker.config.chat.chatRules.screen.ruleScreen.finish": "Finish",
"skyblocker.config.chat.chatRules.screen.ruleScreen.hideMessage": "Hide Message:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.hideMessage.@Tooltip": "Remove the message from chat.",
"skyblocker.config.chat.chatRules.screen.ruleScreen.ignoreCase": "Ignore Case:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.ignoreCase.@Tooltip": "if the filter is case-sensitive.",
"skyblocker.config.chat.chatRules.screen.ruleScreen.inputs": "Inputs:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.locations": "Valid Locations:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.locations.@Tooltip": "List of locations where the filter will work. Separate each location with a \",\" and use a \"!\" if you want it to work anywhere but a location. Location Names:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.name": "Name:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.name.@Tooltip": "The name of the rule.",
"skyblocker.config.chat.chatRules.screen.ruleScreen.outputs": "Outputs:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.partialMatch": "Allow Partial Match:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.partialMatch.@Tooltip": "If the filter can match part of the chat message.",
"skyblocker.config.chat.chatRules.screen.ruleScreen.regex": "Is Regex:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.regex.@Tooltip": "If the filter uses regex or is just a string.",
"skyblocker.config.chat.chatRules.screen.ruleScreen.replace": "Replace Message With:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.replace.@Tooltip": "Input a new message to output (can be formatted using minecraft color codes).",
"skyblocker.config.chat.chatRules.screen.ruleScreen.sounds": "Play Sound:",
"skyblocker.config.chat.chatRules.screen.ruleScreen.sounds.@Tooltip": "Play a sound when the message is sent.",
"skyblocker.config.chat.chatRules.screen.ruleScreen.sounds.amethyst": "Amethyst",
"skyblocker.config.chat.chatRules.screen.ruleScreen.sounds.anvil": "Break",
"skyblocker.config.chat.chatRules.screen.ruleScreen.sounds.arrowHit": "Ding",
"skyblocker.config.chat.chatRules.screen.ruleScreen.sounds.cave": "Cave",
"skyblocker.config.chat.chatRules.screen.ruleScreen.sounds.crit": "Critical",
"skyblocker.config.chat.chatRules.screen.ruleScreen.sounds.none": "None",
"skyblocker.config.chat.chatRules.screen.ruleScreen.sounds.pling": "Pling",
"skyblocker.config.chat.chatRules.screen.ruleScreen.sounds.zombie": "Zombie",
"skyblocker.config.chat.chatRules.screen.ruleScreen.true": "True",
"skyblocker.config.chat.filter": "Filter",
"skyblocker.config.chat.filter.chatFilterResult.ACTION_BAR": "Move to action bar",
"skyblocker.config.chat.filter.chatFilterResult.FILTER": "Filter",
"skyblocker.config.chat.filter.chatFilterResult.PASS": "Disabled",
"skyblocker.config.chat.filter.hideAOTE": "Hide Teleport Ability Messages",
"skyblocker.config.chat.filter.hideAOTE.@Tooltip": "Hides those pesky \"There are blocks in the way!\" messages.",
"skyblocker.config.chat.filter.hideAbility": "Hide Ability Cooldown",
"skyblocker.config.chat.filter.hideAds": "Hide Ads From Public Chat",
"skyblocker.config.chat.filter.hideAutopet": "Hide Autopet Messages",
"skyblocker.config.chat.filter.hideCombo": "Hide Combo Messages",
"skyblocker.config.chat.filter.hideDeath": "Hide Player Death Messages",
"skyblocker.config.chat.filter.hideDeath.@Tooltip": "Filters the player death messages from chat.",
"skyblocker.config.chat.filter.hideDicer": "Hide Dicer Messages",
"skyblocker.config.chat.filter.hideDicer.@Tooltip": "Filters the Dicer messages from chat.",
"skyblocker.config.chat.filter.hideHeal": "Hide Heal Messages",
"skyblocker.config.chat.filter.hideImplosion": "Hide Implosion Message",
"skyblocker.config.chat.filter.hideMana": "Hide Mana Consumption Messages from Action Bar",
"skyblocker.config.chat.filter.hideMana.@Tooltip": "Gives a better experience with FancyBar",
"skyblocker.config.chat.filter.hideMimicKill": "Hide Mimic Kill Messages",
"skyblocker.config.chat.filter.hideMimicKill.@Tooltip": "Filters the \"Mimic dead!\" and \"Mimic killed!\" messages from chat.",
"skyblocker.config.chat.filter.hideMoltenWave": "Hide Molten Wave Message",
"skyblocker.config.chat.filter.hideShowOff": "Hide Show Off Messages",
"skyblocker.config.chat.filter.hideShowOff.@Tooltip": "Filters messages from the /show command",
"skyblocker.config.chat.filter.hideTeleportPad": "Hide Teleport Pad Messages",
"skyblocker.config.chat.filter.hideToggleSkyMall": "Hide Toggle Sky Mall Messages",
"skyblocker.config.chat.filter.hideToggleSkyMall.@Tooltip": "Hides those pesky messages telling you to disable the Sky Mall HOTM perk when you want it enabled!",
"skyblocker.config.eventNotifications": "Event Notifications",
"skyblocker.config.eventNotifications.criterion": "Notification Criterion",
"skyblocker.config.eventNotifications.monologue": "can you pls log onto skyblock rq pls? that would be cool cuz like if you are seeing dis then it means that ur config either got cleared or that this is ur first time using the mod if so then thanks for choosing it and hopefully you enjoy it! so yea this is where you will be able to set reminders for all events in skyblock they will be added as you encounter so you first need to log onto skyblock so yea hope you enjoy the mod and all that",
"skyblocker.config.eventNotifications.notificationSound": "Notification Sound",
"skyblocker.config.eventNotifications.@Tooltip[0]": "Configure how much time before an event you will be reminded with a notification toast! For example if you set '5m' and '30s' in the list, you will receive a notification 5 minutes before and another 30 seconds before an event starts.",
"skyblocker.config.eventNotifications.@Tooltip[1]": "The order doesn't matter. If you want to disable notifications, just empty the list.",
"skyblocker.config.eventNotifications.@Tooltip[2]": "This list will modify the '%s' event",
"skyblocker.config.mining": "Mining",
"skyblocker.config.mining.commissionWaypoints": "Commission Waypoints",
"skyblocker.config.mining.commissionWaypoints.mode": "Enable Commission Waypoints",
"skyblocker.config.mining.commissionWaypoints.mode.@Tooltip[0]": "Off: Do not show Commission waypoint.",
"skyblocker.config.mining.commissionWaypoints.mode.@Tooltip[1]": "\nDwarven: Show waypoints only in dwarven mines.",
"skyblocker.config.mining.commissionWaypoints.mode.@Tooltip[2]": "\nGlacite: Show waypoints only in glacite tunnels.",
"skyblocker.config.mining.commissionWaypoints.mode.@Tooltip[3]": "\nBoth: Show waypoints in dwarven mines and glacite tunnels.",
"skyblocker.config.mining.commissionWaypoints.mode.@Tooltip[4]": "\n(takes effect when commissions updated)",
"skyblocker.config.mining.commissionWaypoints.useColor": "Colored Waypoints",
"skyblocker.config.mining.commissionWaypoints.useColor.@Tooltip": "Color the waypoint text to match the block it's for.",
"skyblocker.config.mining.commissionWaypoints.textScale": "Text Scale",
"skyblocker.config.mining.commissionWaypoints.textScale.@Tooltip": "Scale the size of the commission labels.",
"skyblocker.config.mining.commissionWaypoints.showBaseCamp": "Show Basecamp Waypoint",
"skyblocker.config.mining.commissionWaypoints.showBaseCamp.@Tooltip": "Show waypoint for basecamp when in glacite tunnels (takes effect when commissions updated).",
"skyblocker.config.mining.commissionWaypoints.showEmissary": "Show Emissary",
"skyblocker.config.mining.commissionWaypoints.showEmissary.@Tooltip": "When a commission in the dwarven mines is finished show emissary locations (takes effect when commissions updated).",
"skyblocker.config.mining.crystalHollows": "Crystal Hollows",
"skyblocker.config.mining.crystalHollows.metalDetectorHelper": "Metal Detector Helper",
"skyblocker.config.mining.crystalHollows.metalDetectorHelper.@Tooltip": "Helper for the metal detector puzzle in the Mines of Divan.",
"skyblocker.config.mining.crystalHollows.nucleusWaypoints": "Nucleus Waypoints",
"skyblocker.config.mining.crystalHollows.nucleusWaypoints.@Tooltip": "Show waypoints to the Nucleus in the Crystal Hollows.",
"skyblocker.config.mining.crystalsHud": "Crystal Hollows Map",
"skyblocker.config.mining.crystalsHud.enabled": "Enabled",
"skyblocker.config.mining.crystalsHud.mapScaling": "Map Scaling",
"skyblocker.config.mining.crystalsHud.screen": "Crystal Hollows Map Placement Config...",
"skyblocker.config.mining.crystalsHud.showLocations": "Show Waypoints",
"skyblocker.config.mining.crystalsHud.showLocations.@Tooltip": "Show boxes on important areas in the crystal hollows e.g. Jungle Temple and Fairy Grotto.",
"skyblocker.config.mining.crystalsHud.showLocations.locationSize": "Location Size",
"skyblocker.config.mining.crystalsHud.showLocations.locationSize.@Tooltip": "How big the locations show up on the map.",
"skyblocker.config.mining.crystalsWaypoints": "Crystal Hollows Waypoints",
"skyblocker.config.mining.crystalsWaypoints.enabled": "Enabled Waypoints",
"skyblocker.config.mining.crystalsWaypoints.enabled.@Tooltip": "Show a waypoint (waypoint selected in general/waypoints) at important areas in the crystal hollows, e.g., Jungle Temple and Fairy Grotto. ",
"skyblocker.config.mining.crystalsWaypoints.findInChat": "Find Waypoints In Chat",
"skyblocker.config.mining.crystalsWaypoints.findInChat.@Tooltip": "When in crystal hollows read the chat to see if coordinates are sent and extract these to show as waypoint or on the map",
"skyblocker.config.mining.crystalsWaypoints.shareFail": "Can only share waypoints you have found.",
"skyblocker.config.mining.dwarvenHud": "Dwarven HUD",
"skyblocker.config.mining.dwarvenHud.enabledCommissions": "Enable Commissions",
"skyblocker.config.mining.dwarvenHud.enabledPowder": "Enable Powder",
"skyblocker.config.mining.dwarvenHud.screen": "Dwarven HUD Config...",
"skyblocker.config.mining.dwarvenHud.style": "Style for HUD",
"skyblocker.config.mining.dwarvenHud.style.@Tooltip[0]": "Simple: Shows name and percentage.",
"skyblocker.config.mining.dwarvenHud.style.@Tooltip[1]": "\nFancy: Shows name, percentage, progress bar and an icon.",
"skyblocker.config.mining.dwarvenHud.style.@Tooltip[2]": "\nClassic: Shows name and percentage in a very simple box.",
"skyblocker.config.mining.dwarvenMines": "Dwarven Mines",
"skyblocker.config.mining.dwarvenMines.solveFetchur": "Solve Fetchur",
"skyblocker.config.mining.dwarvenMines.solvePuzzler": "Solve Puzzler Puzzle",
"skyblocker.config.mining.enableDrillFuel": "Enable Drill Fuel",
"skyblocker.config.mining.commissionHighlight": "Highlights Completed Commissions",
"skyblocker.config.mining.glacite": "Glacite Tunnels",
"skyblocker.config.mining.glacite.coldOverlay": "Cold Overlay",
"skyblocker.config.mining.glacite.coldOverlay@Tooltip": "Shows a frosty overlay in the Glacite mines that gets stronger as you get colder.",
"skyblocker.config.misc": "Misc",
"skyblocker.config.misc.richPresence": "Discord RPC",
"skyblocker.config.misc.richPresence.customMessage": "Custom Message",
"skyblocker.config.misc.richPresence.cycleMode": "Cycle Skyblock Info",
"skyblocker.config.misc.richPresence.enableRichPresence": "Enabled",
"skyblocker.config.misc.richPresence.info": "Skyblock Info",
"skyblocker.config.misc.richPresence.info.@Tooltip": "This value doesn't matter if you are cycling",
"skyblocker.config.misc.richPresence.info.BITS": "BITS",
"skyblocker.config.misc.richPresence.info.LOCATION": "LOCATION",
"skyblocker.config.misc.richPresence.info.PURSE": "PURSE",
"skyblocker.config.otherLocations": "Other Locations",
"skyblocker.config.otherLocations.barn": "Barn",
"skyblocker.config.otherLocations.barn.solveHungryHiker": "Solve Hungry Hiker",
"skyblocker.config.otherLocations.barn.solveTreasureHunter": "Solve Treasure Hunter",
"skyblocker.config.otherLocations.end": "The End",
"skyblocker.config.otherLocations.end.enableEnderNodeHelper": "Enable Ender Node Helper",
"skyblocker.config.otherLocations.end.hudEnabled": "HUD Enabled",
"skyblocker.config.otherLocations.end.protectorLocationEnable": "Show Protector Location",
"skyblocker.config.otherLocations.end.resetName": "Reset stored End stats",
"skyblocker.config.otherLocations.end.resetText": "Reset",
"skyblocker.config.otherLocations.end.screen": "End HUD Config...",
"skyblocker.config.otherLocations.end.waypoint": "End Protector Waypoint",
"skyblocker.config.otherLocations.end.zealotKillsEnabled": "Show Zealot Kills Information",
"skyblocker.config.otherLocations.rift": "The Rift",
"skyblocker.config.otherLocations.rift.blobbercystGlow": "Blobbercyst Glow",
"skyblocker.config.otherLocations.rift.blobbercystGlow.@Tooltip": "Applies the glowing effect to the Blobbercysts from the BACTE fight.",
"skyblocker.config.otherLocations.rift.enigmaSoulWaypoints": "Enable Enigma Soul Waypoints",
"skyblocker.config.otherLocations.rift.enigmaSoulWaypoints.@Tooltip": "Note: Many enigma souls have a small task you must complete to get them, so it's recommended to also watch a YouTube video when finding them.",
"skyblocker.config.otherLocations.rift.highlightFoundEnigmaSouls": "Highlight Found Enigma Souls",
"skyblocker.config.otherLocations.rift.mcGrubberStacks": "McGrubber Stacks",
"skyblocker.config.otherLocations.rift.mcGrubberStacks.@Tooltip": "Used for calculating Motes sell prices.",
"skyblocker.config.otherLocations.rift.mirrorverseWaypoints": "Enable Mirrorverse Waypoints",
"skyblocker.config.otherLocations.spidersDen": "Spider's Den",
"skyblocker.config.otherLocations.spidersDen.relics.enableRelicsHelper": "Enable Hidden Relics Helper",
"skyblocker.config.otherLocations.spidersDen.relics.highlightFoundRelics": "Highlight Found Relics",
"skyblocker.config.quickNav": "Quick Navigation",
"skyblocker.config.quickNav.button": "Button %d",
"skyblocker.config.quickNav.button.clickEvent": "Click Event",
"skyblocker.config.quickNav.button.item.components": "Item Components",
"skyblocker.config.quickNav.button.item.components.@Tooltip": "A string of item components enclosed in square brackets, which is the same format as the /give command.\n\nExample: [minecraft:enchantment_glint_override=true]",
"skyblocker.config.quickNav.button.item.count": "Item Count",
"skyblocker.config.quickNav.button.item.itemName": "Item",
"skyblocker.config.quickNav.button.render": "Render",
"skyblocker.config.quickNav.button.uiTitle": "UI Title",
"skyblocker.config.quickNav.enableQuickNav": "Enable Quick Navigation",
"skyblocker.config.slayer": "Slayers",
"skyblocker.config.slayer.endermanSlayer": "Enderman Slayer",
"skyblocker.config.slayer.endermanSlayer.enableYangGlyphsNotification": "Enable Yang Glyphs notification",
"skyblocker.config.slayer.endermanSlayer.highlightBeacons": "Beacon Highlighting",
"skyblocker.config.slayer.endermanSlayer.highlightNukekubiHeads": "Nukekubi Head Highlighting",
"skyblocker.config.slayer.vampireSlayer": "Vampire Slayer",
"skyblocker.config.slayer.vampireSlayer.compactEffigyWaypoints": "Compact Effigy Waypoints",
"skyblocker.config.slayer.vampireSlayer.effigyUpdateFrequency": "Effigy Waypoints Update Frequency (Ticks)",
"skyblocker.config.slayer.vampireSlayer.effigyUpdateFrequency.@Tooltip": "The lower the value, the more frequent the updates, which may cause lag.",
"skyblocker.config.slayer.vampireSlayer.enableEffigyWaypoints": "Enable Effigy Waypoints",
"skyblocker.config.slayer.vampireSlayer.enableHealingMelonIndicator": "Enable Healing Melon Indicator",
"skyblocker.config.slayer.vampireSlayer.enableHolyIceIndicator": "Enable Holy Ice Indicator",
"skyblocker.config.slayer.vampireSlayer.enableManiaIndicator": "Enable Mania Block Indicator",
"skyblocker.config.slayer.vampireSlayer.enableSteakStakeIndicator": "Enable Steak Stake Indicator",
"skyblocker.config.slayer.vampireSlayer.healingMelonHealthThreshold": "Healing Melon Indicator Threshold (Hearts)",
"skyblocker.config.slayer.vampireSlayer.holyIceIndicatorTickDelay": "Holy Ice Indicator Delay (Ticks)",
"skyblocker.config.slayer.vampireSlayer.holyIceUpdateFrequency": "Holy Ice Indicator Update Frequency (Ticks)",
"skyblocker.config.slayer.vampireSlayer.holyIceUpdateFrequency.@Tooltip": "The lower the value, the more frequent the updates, which may cause lag.",
"skyblocker.config.slayer.vampireSlayer.maniaUpdateFrequency": "Mania Indicator Update Frequency (Ticks)",
"skyblocker.config.slayer.vampireSlayer.maniaUpdateFrequency.@Tooltip": "The lower the value, the more frequent the updates, which may cause lag.",
"skyblocker.config.slayer.vampireSlayer.steakStakeUpdateFrequency": "Steak Stake Indicator Update Frequency (Ticks)",
"skyblocker.config.slayer.vampireSlayer.steakStakeUpdateFrequency.@Tooltip": "The lower the value, the more frequent the updates, which may cause lag.",
"skyblocker.config.uiAndVisuals": "UI & Visuals",
"skyblocker.config.uiAndVisuals.backpackPreviewWithoutShift": "View backpack preview without holding Shift",
"skyblocker.config.uiAndVisuals.hideStatusEffectOverlay": "Hide Status Effect Overlay",
"skyblocker.config.uiAndVisuals.bars": "Health, Mana, Defence & XP Bars",
"skyblocker.config.uiAndVisuals.bars.enableBars": "Enable Bars",
"skyblocker.config.uiAndVisuals.chestValue": "Chest Value",
"skyblocker.config.uiAndVisuals.chestValue.color": "Chest Value Color",
"skyblocker.config.uiAndVisuals.chestValue.enableChestValue": "Enable Chest Value",
"skyblocker.config.uiAndVisuals.chestValue.enableChestValue.@Tooltip": "Adds a button in containers to calculate the value of a container.",
"skyblocker.config.uiAndVisuals.chestValue.incompleteColor": "Incomplete Color",
"skyblocker.config.uiAndVisuals.chestValue.incompleteColor.@Tooltip": "The color to display when the price data is incomplete.",
"skyblocker.config.uiAndVisuals.compactDamage": "Compact Damage",
"skyblocker.config.uiAndVisuals.compactDamage.enabled": "Enabled",
"skyblocker.config.uiAndVisuals.compactDamage.precision": "Precision",
"skyblocker.config.uiAndVisuals.compactDamage.precision.@Tooltip" : "The number of digits to display after the decimal point.",
"skyblocker.config.uiAndVisuals.compactDamage.normalDamageColor": "Normal Damage Color",
"skyblocker.config.uiAndVisuals.compactDamage.critDamageGradientStart": "Crit Damage Gradient Start Color",
"skyblocker.config.uiAndVisuals.compactDamage.critDamageGradientEnd": "Crit Damage Gradient End Color",
"skyblocker.config.uiAndVisuals.compactorDeletorPreview": "Enable Compactor/Deletor Preview",
"skyblocker.config.uiAndVisuals.dontStripSkinAlphaValues": "Correct Transparent Skin Pixels",
"skyblocker.config.uiAndVisuals.dontStripSkinAlphaValues.@Tooltip": "When enabled, the alpha values of pixels in skin textures are no longer stripped while in Skyblock.\n\nThis results in the \"filler\" pixels on items using Player Heads to now be completely transparent, although this may have some side effects in odd cases.",
"skyblocker.config.uiAndVisuals.fancyAuctionHouse": "Fancy Auction House",
"skyblocker.config.uiAndVisuals.fancyAuctionHouse.enabled": "Enabled",
"skyblocker.config.uiAndVisuals.fancyAuctionHouse.highlightUnderAvgPrice": "Highlight BIN under average price",
"skyblocker.config.uiAndVisuals.fancyCraftingTable": "Fancy Crafting Table UI",
"skyblocker.config.uiAndVisuals.flameOverlay": "Flame Overlay",
"skyblocker.config.uiAndVisuals.flameOverlay.flameHeight": "Flame Height",
"skyblocker.config.uiAndVisuals.flameOverlay.flameHeight.@Tooltip": "100% default height\n0% off",
"skyblocker.config.uiAndVisuals.flameOverlay.flameOpacity": "Flame Opacity",
"skyblocker.config.uiAndVisuals.flameOverlay.flameOpacity.@Tooltip": "100% default opacity\n0% off",
"skyblocker.config.uiAndVisuals.inputCalculator": "Input Calculator",
"skyblocker.config.uiAndVisuals.inputCalculator.enabled": "Enable Sign Calculator",
"skyblocker.config.uiAndVisuals.inputCalculator.enabled.@Tooltip": "Enables the ability for you to do calculations when inputting values such as price for the ah.\n Key:\n S = 64\n E = 160\n K = 1,000\n M = 1,000,000\n B = 1,000,000,000\n\n purse/P = current purse value",
"skyblocker.config.uiAndVisuals.inputCalculator.requiresEquals": "Only show with \"=\".",
"skyblocker.config.uiAndVisuals.inputCalculator.requiresEquals.@Tooltip": "Only show the calculator when the message starts with \"=\".",
"skyblocker.config.uiAndVisuals.inputCalculator.invalidEquation": "Invalid Equation",
"skyblocker.config.uiAndVisuals.itemCooldown": "Item Cooldown",
"skyblocker.config.uiAndVisuals.itemCooldown.enableItemCooldowns": "Enable Item Cooldown",
"skyblocker.config.uiAndVisuals.searchOverlay": "Search Overlay",
"skyblocker.config.uiAndVisuals.searchOverlay.enableAuctionHouse": "Enable For Auction House",
"skyblocker.config.uiAndVisuals.searchOverlay.enableAuctionHouse.@Tooltip": "Show custom search overlay when searching in the auction house.",
"skyblocker.config.uiAndVisuals.searchOverlay.enableBazaar": "Enable For Bazaar",
"skyblocker.config.uiAndVisuals.searchOverlay.enableBazaar.@Tooltip": "Show custom search overlay when searching in bazaar.",
"skyblocker.config.uiAndVisuals.searchOverlay.enableCommands": "Open from commands",
"skyblocker.config.uiAndVisuals.searchOverlay.enableCommands.@Tooltip": "Opens the bazaar search with \"/bzs\" and auction house with \"/ahs\". A re-log is required for this setting to be updated.",
"skyblocker.config.uiAndVisuals.searchOverlay.historyLength": "Saved Search History Length",
"skyblocker.config.uiAndVisuals.searchOverlay.historyLength.@Tooltip": "The length of search history to save and display for the overlay.",
"skyblocker.config.uiAndVisuals.searchOverlay.keepPreviousSearches": "Keep Previous Searches",
"skyblocker.config.uiAndVisuals.searchOverlay.keepPreviousSearches.@Tooltip": "Keep the existing search queue when opening overlay.",
"skyblocker.config.uiAndVisuals.searchOverlay.maxSuggestions": "Maximum Suggestions",
"skyblocker.config.uiAndVisuals.searchOverlay.maxSuggestions.@Tooltip": "The maximum number of suggested items to show.",
"skyblocker.config.uiAndVisuals.showEquipmentInInventory": "Show Equipment in Inventory",
"skyblocker.config.uiAndVisuals.tabHud": "Fancy tab HUD (Temporarily disabled outside dungeons)",
"skyblocker.config.uiAndVisuals.tabHud.enableHudBackground": "Enable HUD Background",
"skyblocker.config.uiAndVisuals.tabHud.enableHudBackground.@Tooltip": "Enables the background of the non-tab HUD.",
"skyblocker.config.uiAndVisuals.tabHud.nameSorting": "Player Name Sorting Method",
"skyblocker.config.uiAndVisuals.tabHud.nameSorting.@Tooltip": "Alphabetical sorting sorts names alphabetically while Default has no particular order.",
"skyblocker.config.uiAndVisuals.tabHud.plainPlayerNames": "Plain Player Names",
"skyblocker.config.uiAndVisuals.tabHud.plainPlayerNames.@Tooltip": "Enable to display player names without any special formatting on public islands.",
"skyblocker.config.uiAndVisuals.tabHud.tabHudEnabled": "Enable fancy tab HUD",
"skyblocker.config.uiAndVisuals.tabHud.tabHudScale": "Scale factor of fancy tab HUD",
"skyblocker.config.uiAndVisuals.tabHud.tabHudScale.@Tooltip": "Value in %, relative to your vanilla GUI scale",
"skyblocker.config.uiAndVisuals.teleportOverlay": "Teleport Overlay",
"skyblocker.config.uiAndVisuals.teleportOverlay.enableEtherTransmission": "Enable Ether Transmission Overlay",
"skyblocker.config.uiAndVisuals.teleportOverlay.enableInstantTransmission": "Enable Instant Transmission Overlay",
"skyblocker.config.uiAndVisuals.teleportOverlay.enableSinrecallTransmission": "Enable Sinrecall Transmission Overlay",
"skyblocker.config.uiAndVisuals.teleportOverlay.enableTeleportOverlays": "Enable Teleport Overlays",
"skyblocker.config.uiAndVisuals.teleportOverlay.enableWeirdTransmission": "Enable Weird Transmission Overlay",
"skyblocker.config.uiAndVisuals.teleportOverlay.enableWitherImpact": "Enable Wither Impact Overlay",
"skyblocker.config.uiAndVisuals.titleContainer": "Title Container",
"skyblocker.config.uiAndVisuals.titleContainer.@Tooltip": "Used to display multiple titles at once, Example use: Vampire Slayer",
"skyblocker.config.uiAndVisuals.titleContainer.config": "Title Container Placement Config...",
"skyblocker.config.uiAndVisuals.titleContainer.titleContainerScale": "Title Container Scale",
"skyblocker.config.uiAndVisuals.waypoints": "Waypoints",
"skyblocker.config.uiAndVisuals.waypoints.enableWaypoints": "Enable Waypoints",
"skyblocker.config.uiAndVisuals.waypoints.waypointType": "Waypoint Type",
"skyblocker.config.uiAndVisuals.waypoints.waypointType.@Tooltip": "Waypoint: Displays a highlight and a beacon beam.\n\nOutlined Waypoint: Displays both a waypoint and an outline.\n\nHighlight: Only displays a highlight.\n\nOutlined Highlight: Displays both a highlight and an outline.\n\nOutline: Only displays an outline.",
"skyblocker.config.uiAndVisuals.waypoints.waypointType.generalNote": "\n\n\nThis option does not apply to all waypoints. Some waypoints such as secret waypoints have their own waypoint type option.",
"skyblocker.utils.locationUpdateError": "Failed to update your location! Some features of the mod may not work properly :(",
"skyblocker.reparty.notInPartyOrNotLeader": "You must be in a party and be the leader of it to reparty!",
"skyblocker.reparty.error": "Failed to reparty, try again in a moment!",
"skyblocker.itemTooltip.noData": "\u00a7cNo Data",
"skyblocker.itemTooltip.nullMessage": "\u00a7cItem price information on tooltip will renew in max 60 seconds. If not, check latest.log",
"skyblocker.wikiLookup.noArticleFound": "\u00a7rUnable to locate a wiki article for this item...",
"skyblocker.debug.toggledShowingInvisibleArmorStands": "Toggled showing invisible armor stands to %s",
"skyblocker.bars.config.health": "Health",
"skyblocker.bars.config.defense": "Defense",
"skyblocker.bars.config.intelligence": "Intelligence",
"skyblocker.bars.config.experience": "Experience",
"skyblocker.bars.config.mainColor": "Main Color",
"skyblocker.bars.config.overflowColor": "Overflow Color",
"skyblocker.bars.config.textColor": "Text Color",
"skyblocker.bars.config.showValue": "Show Value",
"skyblocker.bars.config.icon": "Icon",
"skyblocker.config.uiAndVisuals.bars.openScreen": "Status Bars Config screen",
"skyblocker.bars.config.explanationTitle": "What is this?",
"skyblocker.bars.config.explanation": "Welcome to the status bars config screen!\n\nDrag and drop the bars to snap them to an anchor (white squares) or existing bars.\nYou can right click them to edit a bunch of properties.\nBy hovering your mouse between 2 bars (your cursor should change), you can resize them.\n\nEverything is saved when you leave",
"skyblocker.updateRepository.start": "§bUpdating the local repository...",
"skyblocker.updateRepository.loading": "§cAnother process is currently updating the local repository, please try again in a moment.",
"skyblocker.updateRepository.deleted": "§bDeleted the local repository successfully, downloading new files... This will take a minute!",
"skyblocker.updateRepository.success": "§aUpdated the local repository successfully.",
"skyblocker.updateRepository.failed": "§cUpdating the local repository failed. See logs for details.",
"skyblocker.updateRepository.error": "§cEncountered an error while deleting and updating the local repository. Try again in a moment or remove the files manually and restart the game. See logs for details.",
"skyblocker.museum.attemptingResync": "Attempting to resync your museum item donations...",
"skyblocker.museum.cannotResync": "Cannot resync your museum item donations! Note that you can only do this once every two days.",
"skyblocker.museum.resyncSuccess": "Successfully resynced your museum item donations!",
"skyblocker.museum.resyncFailure": "Failed to resync your museum item donations!",
"skyblocker.dungeons.secrets.physicalEntranceNotFound": "§cDungeon Entrance Room coordinates not found. Please go back to the green Entrance Room.",
"skyblocker.dungeons.secrets.markSecretFound": "§rMarked secret #%d as found.",
"skyblocker.dungeons.secrets.markSecretMissing": "§rMarked secret #%d as missing.",
"skyblocker.dungeons.secrets.markSecretFoundUnable": "§cUnable to mark secret #%d as found.",
"skyblocker.dungeons.secrets.markSecretMissingUnable": "§cUnable to mark secret #%d as missing.",
"skyblocker.dungeons.secrets.posMessage": "§rRoom: %s, Direction: %s, X: %d, Y: %d, Z: %d",
"skyblocker.dungeons.secrets.noTarget": "§cNo target block found! (Are you pointing at a block in range?)",
"skyblocker.dungeons.secrets.notMatched": "§cThe current room is not matched! (Are you in a dungeon room?)",
"skyblocker.dungeons.secrets.customWaypointAdded": "§rAdded a custom waypoint at X: %d, Y: %d, Z: %d for room %s secret #%d of category %s with name '%s'.",
"skyblocker.dungeons.secrets.customWaypointRemoved": "§rRemoved custom waypoint at X: %d, Y: %d, Z: %d for room %s secret #%d of category %s with name '%s'.",
"skyblocker.dungeons.secrets.customWaypointNotFound": "§cNo custom waypoint found at X: %d, Y: %d, Z: %d for room %s.",
"skyblocker.dungeons.dungeonScore.scoreText": "Score: %s",
"skyblocker.dungeons.puzzle.boulder.noSolution": "No solution found!",
"skyblocker.dungeons.secretsTracker.feedback": "%s§f found %s§f secrets. %s",
"skyblocker.dungeons.secretsTracker.failFeedback": "§cUnable to calculate the number of secrets everybody did this run!",
"skyblocker.api.cache.HIT": "This data was cached!\nIt's %d seconds old.",
"skyblocker.api.cache.MISS": "This data wasn't cached!",
"skyblocker.api.token.authFailure": "Failed to refresh your Skyblocker API token, some features may not work temporarily!",
"skyblocker.api.token.noProfileKeys": "Failed to get your profile keys! Some features of the mod may not work temporarily :( (Has your game been open for more than 24 hours?). To reactivate these features, restart the game.",
"skyblocker.exotic.crystal": "CRYSTAL",
"skyblocker.exotic.fairy": "FAIRY",
"skyblocker.exotic.og_fairy": "OG_FAIRY",
"skyblocker.exotic.spook": "SPOOK",
"skyblocker.exotic.glitched": "GLITCHED",
"skyblocker.exotic.exotic": "EXOTIC",
"skyblocker.dwarvenMines.metalDetectorHelper.startTip": "Stand still in multiple places until the solver has narrowed down possible locations to one",
"skyblocker.dwarvenMines.metalDetectorHelper.foundCenter": "Found the center of mines, now working faster",
"skyblocker.dwarvenMines.metalDetectorHelper.foundTreasureMessage": "Found treasure",
"skyblocker.dwarvenMines.metalDetectorHelper.possibleTreasureLocationsMessage": "Possible treasure locations: ",
"skyblocker.dwarvenMines.metalDetectorHelper.somethingWentWrongMessage": "Something went wrong with the metal detector. Trying again",
"skyblocker.dwarvenMines.metalDetectorHelper.treasure": "Treasure",
"skyblocker.dwarvenMines.metalDetectorHelper.possible": "Possible",
"skyblocker.end.hud.zealotsSinceLastEye": "Since last eye: %d",
"skyblocker.end.hud.zealotsTotalKills": "Total kills: %d",
"skyblocker.end.hud.avgKillsPerEye": "Avg kills per eye: %d",
"skyblocker.end.hud.stage": "Stage: %s",
"skyblocker.end.hud.location": "Location: %s",
"skyblocker.end.hud.protectorLocations.left": "Left",
"skyblocker.end.hud.protectorLocations.front": "Front",
"skyblocker.end.hud.protectorLocations.center": "Center",
"skyblocker.end.hud.protectorLocations.back": "Back",
"skyblocker.end.hud.protectorLocations.rightFront": "Right Front",
"skyblocker.end.hud.protectorLocations.rightBack": "Right Back",
"skyblocker.events.startsNow": "%s starts now!",
"skyblocker.events.startsSoon": "%s starts soon!",
"skyblocker.events.tab.endsIn": "Ends in %s",
"skyblocker.events.tab.clickToWarp": "Click to warp!",
"skyblocker.events.tab.noMore": "No more this year!",
"skyblocker.events.tab.startsIn": "Starts in %s",
"skyblocker.garden.hud.mouseLocked": "Mouse locked.",
"skyblocker.fishing.reelNow": "Reel in now!",
"skyblocker.rift.healNow": "Heal now!",
"skyblocker.rift.iceNow": "Ice now!",
"skyblocker.rift.mania": "Mania!",
"skyblocker.rift.stakeNow": "Stake now!",
"skyblocker.rift.enigmaSouls.markAllFound": "§rMarked all enigma souls as found!",
"skyblocker.rift.enigmaSouls.markAllMissing": "§rMarked all enigma souls as missing!",
"skyblocker.fairySouls.markAllFound": "§rMarked all fairy souls in the current island as found",
"skyblocker.fairySouls.markAllMissing": "§rMarked all fairy souls in the current island as missing",
"skyblocker.relics.markAllFound": "§rMarked all relics as found",
"skyblocker.relics.markAllMissing": "§rMarked all relics as missing",
"skyblocker.shortcuts.config": "Shortcuts Config",
"skyblocker.shortcuts.notLoaded": "§c§lShortcuts not loaded yet",
"skyblocker.shortcuts.command.target": "Target Command",
"skyblocker.shortcuts.command.replacement": "Replacement Command",
"skyblocker.shortcuts.commandArg.target": "Target Command Argument",
"skyblocker.shortcuts.commandArg.replacement": "Replacement Command Argument",
"skyblocker.shortcuts.commandArg.tooltip": "Replace one or more word(s)/argument(s) of a command which has multiple words/arguments instead of matching the entire command.",
"skyblocker.shortcuts.deleteQuestion": "Are you sure you want to remove this shortcut?",
"skyblocker.shortcuts.deleteWarning": "Shortcut '%s' will be lost forever! (A long time!)",
"skyblocker.shortcuts.new": "New Shortcut",
"skyblocker.shortcuts.commandSuggestionTooltip": "Due to limitations of Minecraft, command suggestions will only work after joining a new world.",
"skyblocker.waypoints.config": "Waypoints Config",
"skyblocker.waypoints.newCategory": "New Waypoint Category",
"skyblocker.waypoints.new": "New Waypoint",
"skyblocker.waypoints.share": "Share",
"skyblocker.waypoints.shareWaypoints": "Share Waypoints",
"skyblocker.waypoints.importWaypointsSkytils": "Import Waypoints (Skytils)",
"skyblocker.waypoints.importWaypointsSkytils.tooltip": "Import Waypoints from Clipboard (Skytils Format)",
"skyblocker.waypoints.importWaypointsSnoopy": "Import Waypoints (Snoopy)",
"skyblocker.waypoints.importWaypointsSnoopy.tooltip": "Import Waypoints from Clipboard (Snoopy Format) (Coming Soon)",
"skyblocker.waypoints.exportWaypointsSkytils": "Export Waypoints (Skytils)",
"skyblocker.waypoints.exportWaypointsSkytils.tooltip": "Export Waypoints to Clipboard (Skytils Format)",
"skyblocker.waypoints.importSuccess": "Waypoints Imported",
"skyblocker.waypoints.importSuccessText": "Successfully imported %d waypoints from %d categories.",
"skyblocker.waypoints.importError": "Error Importing Waypoints",
"skyblocker.waypoints.importErrorText": "Failed to import waypoints. See logs for details.",
"skyblocker.waypoints.exportSuccess": "Waypoints Exported",
"skyblocker.waypoints.exportSuccessText": "Successfully exported %d waypoints from %d categories.",
"skyblocker.waypoints.exportError": "Error Exporting Waypoints",
"skyblocker.waypoints.exportErrorText": "Failed to export waypoints. See logs for details.",
"skyblocker.waypoints.deleteQuestion": "Are you sure you want to remove this waypoint?",
"skyblocker.waypoints.deleteWarning": "Waypoint '%s' will be lost forever! (A long time!)",
"skyblocker.customItemNames.removed": "§fRemoved this item's custom name.",
"skyblocker.customItemNames.neverHad": "§fThis item doesn't have a custom name set, but why not add one? ;)",
"skyblocker.customItemNames.added": "§fSet a custom name for your currently held item!",
"skyblocker.customItemNames.noItemUuid": "§cYou must be holding an item that has an uuid to set a custom name!",
"skyblocker.customItemNames.unableToSetName": "§cUnable to set a custom item name :( (Are you in skyblock?, are you holding an item?)",
"skyblocker.customDyeColors.invalidHex": "§cInvalid HEX color code!",
"skyblocker.customDyeColors.notDyeable": "§cThis item isn't a dyeable armor piece!",
"skyblocker.customDyeColors.removed": "§fRemoved this item's custom dye color.",
"skyblocker.customDyeColors.neverHad": "§fThis item doesn't have a custom dye color set, but why not add one? ;)",
"skyblocker.customDyeColors.added": "§fSet a custom dye color for your currently held item!",
"skyblocker.customDyeColors.noItemUuid": "§cYou must be holding an item that has an uuid to set a custom dye color!",
"skyblocker.customDyeColors.unableToSetColor": "§cUnable to set a custom dye color :( (Are you in skyblock?, are you holding an item?)",
"skyblocker.customArmorTrims.invalidMaterialOrPattern": "§cYou supplied either an invalid material or an invalid trim pattern!",
"skyblocker.customArmorTrims.notAnArmorPiece": "§cThis item isn't an armor piece!",
"skyblocker.customArmorTrims.removed": "§fRemoved this item's custom armor trim.",
"skyblocker.customArmorTrims.neverHad": "§fThis item doesn't have an armor trim set, but why not add one? ;)",
"skyblocker.customArmorTrims.added": "§fSet a custom armor trim for your currently held item!",
"skyblocker.customArmorTrims.noItemUuid": "§cYou must be holding an item that has an uuid to set a custom armor trim!",
"skyblocker.customArmorTrims.unableToSetTrim": "§cUnable to set a custom armor trim :( (Are you in skyblock?, are you holding an item?)",
"skyblocker.customAnimatedDyes.invalidHex": "§cAn invalid HEX color code was supplied!",
"skyblocker.customAnimatedDyes.notDyeable": "§cThis item isn't a dyeable armor piece!",
"skyblocker.customAnimatedDyes.removed": "Removed this item's custom animated dye.",
"skyblocker.customAnimatedDyes.neverHad": "This item doesn't have a custom animated dye set, but why not add one? ;)",
"skyblocker.customAnimatedDyes.added": "Set a custom animated dye for your currently held item!",
"skyblocker.customAnimatedDyes.noItemUuid": "§cYou must be holding an item that has an uuid to set a custom animated dye.",
"skyblocker.customAnimatedDyes.unableToSetDye": "§cUnable to set a custom animated dye :( (Are you in skyblock?, are you holding an item?)",
"skyblocker.quiverWarning.50Left": "You only have 50 Arrows left in your Quiver!",
"skyblocker.quiverWarning.10Left": "You only have 10 Arrows left in your Quiver!",
"skyblocker.quiverWarning.empty": "You don't have any more Arrows left in your Quiver!",
"skyblocker.itemProtection.added": "§fYour %s will now be protected! §o*your item now feels a little safer :')*",
"skyblocker.itemProtection.removed": "§fYour %s will §nno longer be protected§f :( - §lBeware of the dangers in doing this!",
"skyblocker.itemProtection.noItemUuid": "§cYou must be holding an item that has an uuid to protect it!",
"skyblocker.itemProtection.unableToProtect": "§cUnable to protect this item :( (Are you in skyblock?, are you holding an item?)",
"skyblocker.tips.enabled": "§aEnabled Tips.",
"skyblocker.tips.disabled": "§cDisabled Tips.",
"skyblocker.tips.previous": "Previous Tip",
"skyblocker.tips.next": "Next Tip",
"skyblocker.tips.clickEnable": "§a[Click to Enable Tips]",
"skyblocker.tips.clickDisable": "§c[Click to Disable Tips]",
"skyblocker.tips.clickPreviousTip": "§b[Click for Previous Tip]",
"skyblocker.tips.clickNextTip": "§a[Click for Next Tip]",
"skyblocker.tips.tip": "§aTip: %s\n",
"skyblocker.tips.customItemNames": "Customize the names of your items with /skyblocker custom renameItem",
"skyblocker.tips.customArmorDyeColors": "Apply a custom dye color to your leather armor with /skyblocker custom dyeColor",
"skyblocker.tips.customArmorTrims": "You can set custom armor trims on your armor using /skyblocker custom armorTrim.",
"skyblocker.tips.customAnimatedDyes": "You can apply a custom animated dye to your leather armor with /skyblocker custom animatedDye!",
"skyblocker.tips.fancyTabExtraInfo": "Did you know you can see extra info on our fancy tab menu when holding N or M?",
"skyblocker.tips.helpCommand": "Use command /skyblocker help and you might find some more nifty features!",
"skyblocker.tips.discordRichPresence": "Use Discord Rich Presence to show your friends how loaded you are!",
"skyblocker.tips.customDungeonSecretWaypoints": "You can add custom secret waypoints to any dungeon room with /skyblocker dungeons secrets addWaypoint.",
"skyblocker.tips.shortcuts": "Use /skyblocker shortcuts to create and edit command and message shortcuts.",
"skyblocker.tips.gallery": "Check out https://hysky.de/skyblocker/gallery for pictures of the mod's features in action!",
"skyblocker.tips.itemRarityBackground": "See an item's rarity easily with Item Rarity Backgrounds in the config's Item Info Display section.",
"skyblocker.tips.modMenuUpdate": "ModMenu will let you know if there's an update available for Skyblocker for your game version.",
"skyblocker.tips.issues": "Submit bug reports and feature requests to https://github.com/SkyblockerMod/Skyblocker.",
"skyblocker.tips.beta": "We often have beta versions available from GitHub Actions that contain new and experimental features.",
"skyblocker.tips.contribute": "We welcome contributions to the mod! See https://github.com/SkyblockerMod/Skyblocker/wiki/contribute for more info.",
"skyblocker.tips.discord": "Join our discord at https://discord.gg/aNNJHQykck to keep up with the latest news about Skyblocker!",
"skyblocker.tips.flameOverlay": "Find that the flame overlay takes up too much screen space? Check out the config to make it smaller",
"skyblocker.tips.wikiLookup": "Press F4 while hovering over an item to open its wiki page in your web browser.",
"skyblocker.tips.protectItem": "Prevent accidentally dropping your items with /skyblocker protectItem.",
"skyblocker.tips.fairySoulsEnigmaSoulsRelics": "Don't know where to find Fairy Souls, Enigma Souls, or Relics? Enable the helpers to aid your exploration; they'll remember which souls you've already found.",
"skyblocker.tips.quickNav": "You can customize the QuickNav buttons in the config.",
"skyblocker.tips.waypoints": "You can import (including from skytils), add, remove, and toggle waypoints on any island with /skyblocker waypoints.",
"skyblocker.tips.orderedWaypoints": "You can import (including from coleweight), add, remove, and toggle ordered waypoints with /skyblocker waypoints ordered.",
"skyblocker.tips.visitorHelper": "Click on the item name in the visitor helper to buy from the bazaar or click on [Copy Amount] to copy the amount to your clipboard.",
"skyblocker.tips.slotText": "Slot text shows you the attribute shard info, catacombs level, collection level, enchantment book level, minion level, pet level, potion level, prehistoric egg blocks walked, rancher's boots speed cap, skill level, skyblock level in the slot.",
"skyblocker.tips.profileViewer": "You can view other players' profiles with /pv.",
"skyblocker.tips.configSearch": "You can search the entire config using the search bar on the bottom right of the config screen.",
"skyblocker.tips.compactDamage": "Customize your damage value with Compact Damage in the config.",
"skyblocker.tips.skyblockerScreen": "You can access the Skyblocker screen to open the config or checkout helpful links for the mod with /skyblocker.",
"skyblocker.tips.tipsClick": "Click on a tip chat message to run its suggestion!",
"skyblocker.tips.eventNotifications": "Check out the customizable event notifications in the config.",
"skyblocker.tips.signCalculator": "Type an math expression in a sign to have the mod calculate it for you.",
"skyblocker.tips.calculateCommand": "Enter an expression after /skyblocker calculate to have the mod calculate it for you.",
"skyblocker.tips.fancierBars": "Customize the look of your health, mana, defense, and experience bars with /skyblocker bars. You can snap and resize bars too!",
"skyblocker.tips.crystalWaypointsShare": "Share Crystal Hollows Waypoints with /skyblocker crystalWaypoints share.",
"skyblocker.tips.gardenMouseLock": "Lock your mouse while farming in the Skyblocker Garden config.",
"skyblocker.tips.newYearCakesHelper": "Open your New Year Cake Bag and Skyblocker will remember them and highlight duplicate cakes red and missing cakes green.",
"skyblocker.tips.accessoryHelper": "Open your accessory bag and Skyblocker will remember them. The accessory helper will tell you what accessories you have and what accessories are missing.",
"skyblocker.tips.fancyAuctionHouseCheapHighlight": "Cheap BINs are highlighted in green in the Fancy Auction House.",
"skyblocker.partyFinder.tabs.partyFinder": "Party Finder",
"skyblocker.partyFinder.tabs.searchSettings": "Search Filters",
"skyblocker.partyFinder.tabs.createParty": "Create Party",
"skyblocker.partyFinder.partyCard.minClassLevel": "Min class level required: %d",
"skyblocker.partyFinder.partyCard.minDungeonLevel": "Min dungeon level required: %d",
"skyblocker.partyFinder.noParties": "No parties found. Big sad :(",
"skyblocker.partyFinder.error.name" : "Party Finder error!",
"skyblocker.partyFinder.error.message": "An error occurred so you've been sent to the vanilla party finder",
"skyblocker.partyFinder.loadingError": "If you see this for more than 5 seconds, something probably went wrong...",
"skyblocker.partyFinder.yourParty": "Your party",
"skyblocker.partyFinder.deList": "Click to de-list",
"skyblocker.partyFinder.join": "Click to join",
"skyblocker.reorderHelper.tooltip.line1": "[Skyblocker] You can copy the amount of items",
"skyblocker.reorderHelper.tooltip.line2": "by holding CTRL while clicking on the item!",
"skyblocker.fancyAuctionHouse.editBid": "Click to edit bid!",
"skyblocker.fancyAuctionHouse.price": "Price:",
"skyblocker.fancyAuctionHouse.newBid": "New Bid:",
"skyblocker.fancyAuctionHouse.buy": "Buy!",
"skyblocker.fancyAuctionHouse.bid": "Bid!",
"skyblocker.fancyAuctionHouse.cantAfford": "Can't Afford!",
"skyblocker.fancyAuctionHouse.alreadyTopBid": "Already Top Bid!",
"skyblocker.fancyAuctionHouse.differentProfile": "On a different profile",
"skyblocker.fancyAuctionHouse.didntWin": "Didn't win :(",
"skyblocker.fancyAuctionHouse.changeProfile": "Change Profile",
"skyblocker.fancyAuctionHouse.collectAuction": "Collect Auction",
"skyblocker.fancyAuctionHouse.collectBid": "Collect Bid",
"skyblocker.fancyAuctionHouse.auctionEnded": "Auction Ended!",
"skyblocker.fancyAuctionHouse.cancelAuction": "Cancel Auction",
"skyblocker.fancyAuctionHouse.yourAuction": "This is your auction!",
"skyblocker.fancyAuctionHouse.youPay": "You pay: %s",
"skyblocker.crimson.dojo": "Dojo",
"skyblocker.crimson.dojo.forceHelper": "Enable Force Helper",
"skyblocker.crimson.dojo.forceHelper.@Tooltip": "Shows timer showing how long until a zombie despawns and outlines negative zombies.",
"skyblocker.crimson.dojo.staminaHelper": "Enable Stamina Helper",
"skyblocker.crimson.dojo.staminaHelper.@Tooltip": "Highlights the holes in the walls turning orange once you have been through a wall.",
"skyblocker.crimson.dojo.masteryHelper": "Enable Mastery Helper",
"skyblocker.crimson.dojo.masteryHelper.@Tooltip": "Shows count down to when to release the bow and a path to follow.",
"skyblocker.crimson.dojo.disciplineHelper": "Enable Discipline Helper",
"skyblocker.crimson.dojo.disciplineHelper.@Tooltip": "Outlines the zombies to attack with currently held sword.",
"skyblocker.crimson.dojo.swiftnessHelper": "Enable Swiftness Helper",
"skyblocker.crimson.dojo.swiftnessHelper.@Tooltip": "highlights the newest wool block to go to.",
"skyblocker.crimson.dojo.controlHelper": "Enable Control Helper",
"skyblocker.crimson.dojo.controlHelper.@Tooltip": "Renders an outline around where to aim.",
"skyblocker.crimson.dojo.tenacityHelper": "Enable Tenacity Helper",
"skyblocker.crimson.dojo.tenacityHelper.@Tooltip": "Shows a path for each fireball and predicted block they are going to hit.",
"skyblocker.crimson.kuudra.noArrowPoison": "No Arrow Poison!",
"skyblocker.crimson.kuudra.lowArrowPoison": "Low on Arrow Poison!",
"skyblocker.waypoints.ordered.groupNonExistent": "§cThe waypoint group %s doesn't exist.",
"skyblocker.waypoints.ordered.add.invalidHexColor": "§cInvalid HEX color code!",
"skyblocker.waypoints.ordered.addAt.success": "Added a waypoint in group %s at index %d.",
"skyblocker.waypoints.ordered.add.success": "Added a waypoint in group %s at %s.",
"skyblocker.waypoints.ordered.removeGroup.success": "Successfully removed the waypoint group %s.",
"skyblocker.waypoints.ordered.remove.success": "Successfully removed the waypoint at %s from group %s.",
"skyblocker.waypoints.ordered.removeAt.success": "Successfully removed the waypoint at index %d from group %s.",
"skyblocker.waypoints.ordered.toggle.success": "Toggled the waypoint group %s.",
"skyblocker.waypoints.ordered.showAll": "Toggled showing all waypoints from enabled groups.",
"skyblocker.waypoints.ordered.export.success": "Successfully copied your waypoints to your clipboard!",
"skyblocker.waypoints.ordered.export.fail": "§cFailed to export your waypoints, check the latest.log for more information.",
"skyblocker.waypoints.ordered.import.skyblocker.success": "Successfully imported waypoints from the Skyblocker Ordered Waypoints format!",
"skyblocker.waypoints.ordered.import.skyblocker.unknownFormatHeader": "§cThis import code doesn't look like its in the Skyblocker Ordered Waypoints format, double-check your clipboard to see if everything is correct.",
"skyblocker.waypoints.ordered.import.skyblocker.fail": "§cFailed to import waypoints from the Skyblocker Ordered Waypoints format. Make sure to have the waypoint data copied to your clipboard!",
"skyblocker.waypoints.ordered.import.coleWeight.groupAlreadyExists": "§cThere is already an ordered waypoints group under the name \"%s\", please choose another name to import your waypoints under.",
"skyblocker.waypoints.ordered.import.coleWeight.success": "Successfully imported waypoints from the Cole Weight format.",
"skyblocker.waypoints.ordered.import.coleWeight.fail": "§cFailed to import waypoints from the Cole Weight format. Make sure to have the waypoint data copied to your clipboard!",
"skyblocker.profileviewer.inventory.inventory": "Inventory",
"skyblocker.profileviewer.inventory.armor": "Armor",
"skyblocker.profileviewer.inventory.equipment": "Equipment",
"skyblocker.profileviewer.inventory.enderchest": "Enderchest",
"skyblocker.profileviewer.inventory.backpack": "Backpack",
"skyblocker.profileviewer.inventory.wardrobe": "Wardrobe",
"skyblocker.profileviewer.inventory.pets": "Pets",
"skyblocker.profileviewer.inventory.accessoryBag": "Accessory Bag",
"skyblocker.profileviewer.inventory.inactive": "Locked Slot",
"skyblocker.profileviewer.inventory.inactive.description.backpack": "The selected backpack",
"skyblocker.profileviewer.inventory.inactive.description.general": "does not contain this slot",
"emi.category.skyblocker.skyblock": "Skyblock"
}
|