forked from Double2Proj/DoubleBoar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
2986 lines (2984 loc) · 80.1 KB
/
Copy pathconfig.json
File metadata and controls
2986 lines (2984 loc) · 80.1 KB
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
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"devs": [
"735212643865854104"
],
"logChannel": "1249362157544542228",
"reportsChannel": "1250228439672291429",
"updatesChannel": "1249362245901750363",
"defaultChannel": "1249362391209082890",
"spookChannel": "1249370134171357355",
"unlimitedBoars": true,
"debugMode": true,
"maintenanceMode": false,
"marketOpen": true,
"pathConfig": {
"listeners": "../../listeners/",
"commands": "../../commands/",
"databaseFolder": "database/",
"guildDataFolder": "guilds/",
"userDataFolder": "users/",
"globalDataFolder": "global/",
"itemDataFileName": "items.json",
"leaderboardsFileName": "leaderboards.json",
"bannedUsersFileName": "bannedUsers.json",
"powerupDataFileName": "powerups.json",
"questDataFileName": "quest.json",
"wipeUsersFileName": "wipeUsers.json",
"githubFileName": "github.json",
"logsFolder": "logs/",
"prodStartScript": "StartBotBread.bat",
"prodRemotePath": "/BreadBot-main/",
"boars": "src/main/resources/items/breads/",
"badges": "src/main/resources/items/badges/",
"powerups": "src/main/resources/items/powerups/",
"itemAssets": "src/main/resources/items/",
"tempItemAssets": "src/main/resources/temp_items/",
"collAssets": "src/main/resources/collection/",
"otherAssets": "src/main/resources/other/",
"fontAssets": "src/main/resources/font/",
"itemOverlay": "ItemOverlay.png",
"itemUnderlay": "ItemUnderlay.png",
"itemBackplate": "ItemBackplate.png",
"collOverlay": "breadCollectionOverlay.png",
"collUnderlay": "BreadCollectionUnderlay.png",
"collDetailOverlay": "BoarCollectionDetailedOverlay.png",
"collDetailUnderlay": "BoarCollectionDetailedUnderlay.png",
"collPowerOverlay": "BoarCollectionPowerupsOverlay.png",
"collPowerUnderlay": "BoarCollectionPowerupsUnderlay.png",
"collPowerUnderlay2": "BoarCollectionPowerupsUnderlay2.png",
"collPowerUnderlay3": "BoarCollectionPowerupsUnderlay3.png",
"collEnhanceUnderlay": "BoarEnhanceUnderlay.png",
"collGiftUnderlay": "BoarGiftUnderlay.png",
"clanNone": "BoarClanNone.png",
"cellNone": "CellNoCharge.png",
"cellCommon": "CellCommon.png",
"cellUncommon": "CellUncommon.png",
"cellRare": "CellRare.png",
"cellEpic": "CellEpic.png",
"cellLegendary": "CellLegendary.png",
"cellMythic": "CellMythic.png",
"cellDivine": "CellDivine.png",
"eventUnderlay": "BoarEventUnderlay.png",
"questsUnderlay": "BoarQuestsUnderlay.png",
"leaderboardUnderlay": "LeaderboardUnderlay.png",
"marketOverviewUnderlay": "BoarMarketOverviewUnderlay.png",
"marketOverviewOverlay": "BoarMarketOverviewOverlay.png",
"marketBuySellUnderlay": "BoarMarketBuySellUnderlay.png",
"marketBuySellOverlay": "BoarMarketBuySellOverlay.png",
"marketOrdersUnderlay": "BoarMarketYourOrdersUnderlay.png",
"favorite": "favorite.png",
"mainFont": "MinecraftFont.ttf",
"helpGeneral1": "BoarHelpGeneral.png",
"helpGeneral2": "BoarHelpGeneral2.png",
"helpPowerup1": "BoarHelpPowerups.png",
"helpPowerup2": "BoarHelpPowerups2.png",
"helpMarket1": "BoarHelpMarket.png",
"helpMarket2": "BoarHelpMarket2.png",
"helpBadgeBoar1": "BoarHelpBadgeBoar.png",
"helpBadgeBoar2": "BoarHelpBadgeBoar2.png",
"helpBadgeBoar3": "BoarHelpBadgeBoar3.png",
"circleMask": "CircleMask.png",
"bucks": "BoarBucksGift.png",
"powerup": "BoarPowerup.png",
"check": "Checkmark.png",
"noAvatar": "NoAvatar.png",
"dynamicImageScript": "src/main/python/make_animated_image.py",
"userOverlayScript": "src/main/python/user_animated_overlay.py",
"guessInterpreterFile": "../../util/boar/GuessInterpreter.js"
},
"stringConfig": {
"noPermission": "You don't have permission to use this command.",
"noSetup": "To use this command, an admin must first do /bread-manage setup!",
"doingSetup": "BreadBot is currently being set up! Please wait!",
"wrongChannel": "Cannot use that command here!",
"nullFound": "One or more inputs are `null`!",
"onCooldown": "You're using this command too fast! Please wait 5 seconds!",
"error": "Something went wrong! Please try again in a few minutes. If the issue persists, use /bread report!",
"maintenance": "BreadBot is currently in maintenance mode!",
"bannedString": "You're banned from doing this! You'll be unbanned %@!",
"permBannedString": "You're permanently banned from doing this!",
"banSuccess": "Successfully banned %@ for %@ hour(s)!",
"setupCancelled": "Setup was cancelled!",
"setupError": "An error occurred while getting information! Try again later.",
"setupFinishedAll": "BreadBot has successfully been set up! Do /bread daily in one of the bread channels you chose to get started.",
"setupExpired": "You haven't interacted with the form for 2 minutes! Automatically terminating setup.",
"setupUnfinished1": "**What channels can BreadBot commands be used in? [Max 3]** \n*(Note: If you have a lot of server members, these channels may get flooded.)*",
"setupUnfinished2": "**Is this server a Hypixel SkyBlock community?**",
"setupFinished1": "**These are the channels you've selected for BreadBot to work in: **",
"setupFinished2": "**Hypixel SkyBlock community: **",
"setupInfoResponse1": "This bot has slash commands and can produce spammy content depending on how large your server is. This is why you'll need to decide which channel(s) the bot is enabled in. These channels can be changed at any time using /bread-manage setup. You can also use the pencil button to enter a channel ID (right-click the channel name and click 'Copy ID') of a channel that isn't shown in the selection box.",
"setupInfoResponse2": "This bot originated on a Discord server dedicated to Hypixel SkyBlock. If you don't know what that is, no sweat! Just click \"No\". If you do and you're part of the community, it's highly recommended that you click \"Yes\". This can be changed at any time using /bread-manage setup.",
"dailyUsed": "You've already used your daily bread! The next time you can use the command is in %@.",
"dailyFirstTime": "It seems like this is your first time using BreadBot! Here's %@ to get you started! If you ever need help, run %@.",
"dailyBonus": "5 Miracle Charms",
"dailyUsedNotify": "You've already used your daily bread! The next time you can use the command is in %@. Click the button below to be notified!",
"dailyPowUsed": "Successfully used all of your %@!",
"dailyPowFailed": "Tried using your %@ but you had none! You can see how many you have in the %@ view of %@.",
"dailyTitle": "Daily Bread!",
"extraTitle": "Extra Bread!",
"enhanceTitle": "Transmutation!",
"cloneTitle": "Bread Cloning!",
"dailyNoBoarFound": "Failed to find one or more valid breads!",
"giveBoarChoiceTag": "BREAD",
"giveBadgeChoiceTag": "BADGE",
"giveBoar": "Successfully given bread (If it didn't show, make sure perms are correct!)",
"giveBadID": "ID input is not valid. To see valid IDs, wait for choices to appear.",
"giveTitle": "Bread Given!",
"giveBadge": "Successfully given badge (If it didn't show, make sure perms are correct!)",
"giveBadgeTitle": "Badge Given!",
"giveBadgeHas": "This user already has this badge!",
"giftOpenTitle": "Gift Opened!",
"collNoBadges": "No Badges!",
"collDateLabel": "Started collecting on",
"collScoreLabel": "Bread Bucks",
"collTotalLabel": "Total",
"collUniquesLabel": "Uniques",
"collDailiesLabel": "Dailies",
"collStreakLabel": "Streak",
"collLastDailyLabel": "Last Daily",
"collFavLabel": "FAVORITE",
"collRecentLabel": "RECENT",
"collIndivTotalLabel": "Total Collected",
"collFirstObtainedLabel": "First Obtained",
"collLastObtainedLabel": "Last Gotten",
"collDescriptionLabel": "Description",
"collClaimsLabel": "Powerup Events Claimed",
"collFastestClaimsLabel": "Perfect Powerups",
"collFastestTimeLabel": "Fastest Claim Time",
"collBestPromptLabel": "Best Prompt",
"collBlessLabel": "Bread Blessings",
"collGiftsLabel": "Gifts",
"collClonesLabel": "Clones",
"collCellLabel": "Transmutation Cell",
"collMiraclesClaimedLabel": "Lifetime Miracles Collected",
"collMiraclesUsedLabel": "Miracles Used",
"collMostMiraclesLabel": "Most Miracles Owned",
"collHighestMultiLabel": "Most Bread Blessings",
"collGiftsClaimedLabel": "Lifetime Gifts Collected",
"collGiftsUsedLabel": "Gifts Given",
"collGiftsOpenedLabel": "Gifts Opened",
"collMostGiftsLabel": "Most Gifts Owned",
"collClonesClaimedLabel": "Lifetime Clones Collected",
"collClonesUsedLabel": "Clones Used",
"collClonesSuccLabel": "Successful Clones",
"collMostClonesLabel": "Most Clones Owned",
"collEnhancersClaimedLabel": "Lifetime Charges Collected",
"collEnhancedLabel": "Transmuted %@",
"collDataChange": "Your data seems to have changed! Try again in a few minutes.",
"collEnhanceNoBucks": "You don't have enough Bread Bucks to do this!",
"collEnhanceDetails": "Are you sure you want to convert %@ into a random %@? This will cost %@ and will fully deplete your %@! Click \"Transmute\" again to confirm.",
"collEnhanceBoarLose": "-1 %@",
"collEnhanceBoarGain": "+1 %@ Bread",
"collEditionTitle": "__Editions for %@__",
"collEditionLine": "**Edition #%@:** %@\n",
"collDescriptionSB": "(SkyBlock Bread)",
"giftConfirm": "Are you sure you want to send out a %@ in this channel? Once someone opens it, both you and the opener get rewards! Click \"Send Gift\" again to confirm.",
"giftFail": "BreadBot is missing permissions needed to send gifts!",
"giftOut": "You already have a gift that's sent out!",
"giftSent": "Successfully sent gift!",
"giftNone": "You don't have any gifts!",
"giftFrom": "From: ",
"giftOpened": "%@ You opened the gift in %@!",
"giftOpenedWow": "Wow!",
"miracleConfirm": "Are you sure you want to activate all your %@? You'll have %@ if you do and the bonus will be used up on your next %@! Click \"Activate Miracles\" again to confirm.",
"miracleSuccess": "Successfully activated all your %@!",
"cloneConfirm": "Are you sure you want to use a %@ to clone your %@? If you do, there's a %@ chance that the cloning process will succeed! Click \"Clone\" again to confirm.",
"cloneFail": "%@ was unaffected by the serum!",
"eventParticipated": "You've already participated in this event!",
"eventNobody": "Fuck",
"eventTitle": "%@ EVENT!",
"eventEndedTitle": "%@ EVENT ENDED!",
"eventsDisabled": "This server is missing out on powerups! To allow them to spawn, make sure BreadBot has the permissions it requests when you click \"Add To Server\" under its profile!",
"powRightFull": "%@ It took you %@ to guess correctly! You'll receive %@ once the powerup event ends!",
"powRight": "Correct!",
"powWrongFirst": "%@ Try again!",
"powWrongSecond": "%@ You guessed incorrectly twice! Event Failed!",
"powWrong": "Incorrect!",
"powNoMore": "You've guessed incorrectly too many times! Better luck next time!",
"powTop": "Perfect Powerup! - #1 Claimer",
"powTopResult": "%@ms - %@",
"powAvg": "Average Time",
"powAvgResult": "%@ms (%@ Claimer)",
"powAvgResultPlural": "%@ms (%@ Claimers)",
"powPrompt": "Prompt",
"powReward": "Reward: %@",
"powResponse": "You received %@ as a reward from the %@! To see all your powerups, do %@ and go to the %@ view! For information on how powerups work and how to use them, do %@ and go to the %@ area!",
"powResponseShort": "You received %@ as a reward from the %@!",
"notInBoard": "The user you entered isn't on this leaderboard! Defaulting to first page.",
"boardHeader": "LEADERBOARD - %@",
"boardFooter": "Users: %@ | Page: %@/%@ | Viewing %@-%@",
"deletedUsername": "Deleted User",
"marketConfirmInstaBuy": "Are you sure? You're buying %@, bringing the total cost to $%@. Click 'Buy Now' to confirm your purchase.",
"marketUpdatedInstaBuy": "The market prices have fluctuated! Your new total cost is $%@. If you're fine with this, click 'Buy Now' to confirm your purchase.",
"marketConfirmInstaSell": "Are you sure? You're selling %@, bringing the total return to $%@. Click 'Sell Now' to confirm your sale.",
"marketUpdatedInstaSell": "The market prices have fluctuated! Your new total return is $%@. If you're fine with this, click 'Sell Now' to confirm your sale.",
"marketInstaComplete": "Transaction complete! All bread bucks/items have been received.",
"marketConfirmBuyOrder": "Are you sure? You're setting up a buy order for %@, bringing the total potential cost to $%@. Click 'Buy Order' again to confirm your order.",
"marketConfirmSellOrder": "Are you sure? You're setting up a sell offer for %@, bringing the total potential return to $%@. Click 'Sell Offer' again to confirm your offer.",
"marketOrderComplete": "Order/Offer placed! To see the status of your order, click 'Orders'.",
"marketConfirmUpdateIncrease": "Are you sure? Your order/offer for %@ will increase in price from $%@ to $%@.",
"marketConfirmUpdateDecrease": "Are you sure? Your order/offer for %@ will decrease in price from $%@ to $%@.",
"marketUpdateComplete": "Successfully updated your order/offer!",
"marketClaimComplete": "Successfully claimed your items/bucks!",
"marketMaxItems": "You've reached the maximum amount of this item in your collection!",
"marketCancelComplete": "Successfully cancelled your order!",
"marketNoRoom": "Your collection can't fit this amount of items!",
"marketMustClaim": "You have items/bucks to claim! Claim them first!",
"marketNoBucks": "You don't have enough bread bucks for this!",
"marketNoEdition": "You don't have this edition so you cannot sell it!",
"marketNoEditionOrders": "Not enough orders of this item edition to complete this transaction!",
"marketNoItems": "You don't have enough of this item!",
"marketNoOrders": "Not enough orders of this item to complete this transaction!",
"marketMaxOrders": "You reached the maximum number of orders you can place! Cancel or claim one of your orders to create a new one!",
"marketInvalid": "Invalid input! Input(s) must be a positive integer!",
"marketWrongEdition": "The edition you input didn't match the edition you're trying to buy/sell!",
"marketTooMany": "You may only set up an order for 1000 items or less at a time!",
"marketTooHigh": "Order price must be $%@ or lower!",
"marketEditionHigh": "That edition of this item doesn't exist!",
"marketHasEdition": "You already have that edition of this item or are currently selling it!",
"marketClosed": "The Bakery is currently closed!",
"marketTooYoung": "Your Discord account is too young to use the Bakery!",
"marketTooCheap": "The price you entered is too low! Must be at least $%@.",
"marketTooExpensive": "The price you entered is too high! Must be at maximum $%@.",
"marketBestOrder": "You already have the best order for this item!",
"marketBSBuyNowLabel": "Buy Now Price",
"marketBSSellNowLabel": "Sell Now Price",
"marketBSBuyOrdLabel": "Buy Order Volume",
"marketBSSellOrdLabel": "Sell Offer Volume",
"marketOrdSell": "Selling: %@",
"marketOrdBuy": "Buying: %@",
"marketOrdList": "Listed %@ %@",
"marketOrdExpire": "EXPIRED",
"marketOrdPriceLabel": "Price per Unit",
"marketOrdFillLabel": "Amount Filled",
"marketOrdClaimLabel": "Items/Bucks to Claim",
"notificationSuccess": "You've successfully enabled notifications! You'll be notified when your daily bread is available.",
"notificationFailed": "Failed to enable notifications! BreadBot is unable to DM you. To fix this, invite BreadBot to a private server where you have DMs open (Right click the server > Privacy Settings > Enable Direct Messages).",
"notificationSuccessReply": "Success! You should've received a DM from BreadBot.",
"notificationDailyReady": "## Your daily bread is ready!",
"notificationStopStr": "\n||Message me STOP to turn off notifications||",
"notificationExtras": [
"",
"Maybe this time you'll get a divine!",
"Did you know that you can transmute a Divine bread? Use /bread help for more info!",
"Found a bug? Report it using /bread report!",
"There are %@ unique breads to collect!",
"Gifts have a chance of giving a super rare item...",
"Over %@ users play bread game!",
"Bread game will *never* be pay to win!",
"Bread 👍",
"BreadBot will never ask for your personal information.",
"Did you know that powerups spawn roughly every 2 hours? Use /bread help for more info!",
"BreadBot exists in %@ different servers!",
"You have a bread streak of %@! The higher your bread streak, the more bread blessings you'll have!",
"Want to suggest a new bread or feature? Join the server in my About Me!",
"BreadBot has a lot more to it than just running /bread daily! To see everything BreadBot has to offer, use /bread help!",
"Did you know that there are over 6000 different breads?"
],
"notificationServerPing": "Note: If you run /bread daily a second time, then click \"Enable Notifications\", you can receive your notifications in DMs instead. To disable this ping, un-react to the bread emoji in <#996887892737667204>*",
"questCompletionBonus": "Full Completion Bonus:",
"questFullyComplete": "FULLY COMPLETE!",
"questInvFull": "Some items were unable to fit in your inventory!",
"noParentChannel": "NO CATEGORY",
"notValidChannel": "This channel isn't valid! Try a different one! The channel should be a text channel, be not already chosen, and exists in this server.",
"sentReport": "Successfully sent report!",
"deletedData": "Success! Your data will be deleted in 24 hours. If you'd like to cancel this operation, run any BreadBot command within the next 24 hours.",
"cancelDelete": "Cancelled the self-wipe process.",
"deleteMsgOne": "Are you **absolutely** sure you want to **completely** wipe your data from BreadBot?",
"deleteMsgTwo": "**THIS WILL DELETE EVERYTHING!** All of your progress will be gone forever and will not be recoverable. So once again, are you **ABSOLUTELY** sure you want to **COMPLETELY** wipe your data from BreadBot?",
"defaultSelectPlaceholder": "UNSELECTED",
"emptySelect": "None",
"channelOptionLabel": "#%@ [%@]",
"unavailable": "N/A",
"defaultImageName": "unknown",
"fontName": "Minecraft",
"commandDebugPrefix": "%@ [%@%@]\n",
"pullLink": "https://api.github.com/repos/McFetusDeletus/BreadBot/pulls?state=closed",
"githubImg": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png",
"supportLink": "https://www.patreon.com/BoarBotDevs",
"supportStr": "Like playing BreadBot? Support us on our Patreon!\n",
"spookMessages": [
"Welcome to Bread-O-Ween! Just like last year, Spooky Bread will be providing us with **five** unique hunts, all rewarding new halloween-themed Breads! Make sure you stick until the end because the last hunt had the most time and effort poured into it! Without further ado, let's get started.\n\nFirst video: https://youtu.be/HIHqgEmjA4k",
"Onto the second hunt! You may still be solving the first hunt, but Spooky Bread insisted on his schedule. Good luck! *Ignore where Spooky Bread said \"closing out\". He rearranged the hunt order last minute*\n\nSecond video: https://youtu.be/ZNgPfizDuug",
"Not entirely sure why Spooky Bread wanted everyone to go through his nostalgia trip with him on that previous hunt. Anyways, this next one is a fan favorite... Trivia!\n\nThird video: https://youtu.be/5VflhcH1BCo",
"Uh... Spooky Bread needs help with his homework? Maybe you could help him out with that? *Please check the video description*\n\nFourth video: https://youtu.be/6yoY79n6WsY",
"The final hunt! Take a trip through Spooky Bread's Manor! Did you know he's lived there for over 100 years?\n\nFifth video: https://youtu.be/4B9tX43uk8Q"
]
},
"numberConfig": {
"originPos": [
0,
0
],
"fontHuge": 75,
"fontBig": 60,
"fontMedium": 45,
"fontSmallMedium": 40,
"fontSmallest": 35,
"maxUsernameLength": 16,
"maxTrackedEditions": 1000,
"maxScore": 100000000000000000,
"maxBoars": 99999999,
"maxStreak": 99999999,
"maxDailies": 99999999,
"maxIndivBoars": 100000000000000000,
"maxPowBase": 100000000000000000,
"maxEnhancers": 30,
"maxSmallPow": 999999999,
"maxPowPages": 3,
"rarityIncreaseConst": 25000,
"miracleIncreaseMax": 1000,
"enhanceDetailsPos": [
564,
1192
],
"enhanceDetailsWidth": 1040,
"enhanceImageSize": [
1129,
1383
],
"enhanceCellPos": [
139,
121
],
"enhanceCellSize": [
274,
396
],
"enhanceBoarPos": [
125,
639
],
"enhanceBoarSize": [
320,
320
],
"enhanceRarityPos": [
850,
942
],
"giftImageSize": [
922,
1072
],
"giftFromPos": [
462,
946
],
"giftFromWidth": 800,
"itemImageSize": [
930,
1080
],
"itemPos": [
27,
169
],
"itemSize": [
886,
886
],
"itemTitlePos": [
465,
79
],
"itemNamePos": [
465,
133
],
"itemUserTagX": 110,
"itemUserAvatarX": 43,
"itemUserAvatarYOffset": 9,
"itemUserAvatarWidth": 52,
"itemUserBoxExtra": 127,
"itemTextX": 48,
"itemTextYOffset": 52,
"itemTextBoxExtra": 65,
"itemBoxX": 8,
"itemBoxOneY": 195,
"itemBoxTwoY": 266,
"itemBoxThreeY": 358,
"itemBoxFourY": 429,
"itemBoxHeight": 71,
"collImageSize": [
1920,
1388
],
"collUserAvatarPos": [
24,
24
],
"collUserAvatarSize": [
156,
156
],
"collUserTagPos": [
229,
80
],
"collClanPos": [
1740,
24
],
"collClanSize": [
156,
156
],
"collDateLabelPos": [
994,
78
],
"collDatePos": [
1005,
150
],
"collNoBadgePos": [
240,
150
],
"collBadgeStart": 235,
"collBadgeSpacing": 68,
"collBadgeY": 98,
"collBadgeSize": [
65,
65
],
"collScoreLabelPos": [
365,
289
],
"collScorePos": [
365,
359
],
"collTotalLabelPos": [
201,
472
],
"collTotalPos": [
201,
542
],
"collUniquesLabelPos": [
538,
472
],
"collUniquePos": [
538,
542
],
"collDailiesLabelPos": [
201,
656
],
"collDailiesPos": [
201,
726
],
"collStreakLabelPos": [
538,
656
],
"collStreakPos": [
538,
726
],
"collLastDailyLabelPos": [
370,
846
],
"collLastDailyPos": [
370,
946
],
"collIndivRarityPos": [
370,
290
],
"collIndivFavHeight": 242,
"collIndivFavSize": [
55,
55
],
"collBoarNamePos": [
370,
336
],
"collBoarNameWidth": 635,
"collIndivTotalLabelPos": [
370,
468
],
"collIndivTotalPos": [
370,
539
],
"collFirstObtainedLabelPos": [
370,
643
],
"collFirstObtainedPos": [
370,
714
],
"collLastObtainedLabelPos": [
370,
818
],
"collLastObtainedPos": [
370,
889
],
"collDescriptionLabelPos": [
370,
1003
],
"collDescriptionPos": [
370,
1206
],
"collDescriptionWidth": 630,
"collAttemptsLabelPos": [
486,
481
],
"collAttemptsPos": [
486,
551
],
"collAttemptsTopLabelPos": [
486,
649
],
"collAttemptsTopPos": [
486,
719
],
"collFastestTimeLabelPos": [
486,
817
],
"collFastestTimePos": [
486,
887
],
"collBestPromptLabelPos": [
486,
985
],
"collBestPromptPos": [
486,
1040
],
"collBlessLabelPos": [
1441,
335
],
"collBlessPos": [
1441,
406
],
"collMiraclesLabelPos": [
1441,
503
],
"collMiraclesPos": [
1441,
574
],
"collGiftsLabelPos": [
1287,
671
],
"collGiftsPos": [
1287,
742
],
"collClonesLabelPos": [
1594,
671
],
"collClonesPos": [
1594,
742
],
"collCellLabelPos": [
1441,
839
],
"collCellPos": [
1321,
880
],
"collCellSize": [
231,
331
],
"collChargePos": [
1441,
1282
],
"collLifetimeMiraclesLabelPos": [
486,
481
],
"collLifetimeMiraclesPos": [
486,
552
],
"collMiraclesUsedLabelPos": [
486,
649
],
"collMiraclesUsedPos": [
486,
720
],
"collMostMiraclesLabelPos": [
486,
817
],
"collMostMiraclesPos": [
486,
888
],
"collHighestMultiLabelPos": [
486,
985
],
"collHighestMultiPos": [
486,
1056
],
"collGiftsClaimedLabelPos": [
1441,
480
],
"collGiftsClaimedPos": [
1441,
551
],
"collGiftsUsedLabelPos": [
1441,
648
],
"collGiftsUsedPos": [
1441,
719
],
"collGiftsOpenedLabelPos": [
1441,
816
],
"collGiftsOpenedPos": [
1441,
887
],
"collMostGiftsLabelPos": [
1441,
984
],
"collMostGiftsPos": [
1441,
1055
],
"collClonesClaimedLabelPos": [
486,
480
],
"collClonesClaimedPos": [
486,
551
],
"collClonesUsedLabelPos": [
486,
648
],
"collClonesUsedPos": [
486,
719
],
"collClonesSuccLabelPos": [
486,
816
],
"collClonesSuccPos": [
486,
887
],
"collMostClonesLabelPos": [
486,
984
],
"collMostClonesPos": [
486,
1055
],
"collEnhancersClaimedLabelPos": [
1441,
313
],
"collEnhancersClaimedPos": [
1441,
384
],
"collEnhancedLabelPositions": [
[
1441,
481
],
[
1441,
649
],
[
1441,
817
],
[
1287,
985
],
[
1594,
985
],
[
1287,
1153
],
[
1594,
1153
]
],
"collEnhancedPositions": [
[
1441,
552
],
[
1441,
720
],
[
1441,
888
],
[
1287,
1056
],
[
1594,
1056
],
[
1287,
1224
],
[
1594,
1224
]
],
"collPowDataWidth": 560,
"collBoarsPerPage": 16,
"collBoarStartX": 740,
"collBoarStartY": 210,
"collBoarSpacingX": 296,
"collBoarSpacingY": 295,
"collBoarCols": 4,
"collBoarSize": [
268,
268
],
"collRarityStartX": 730,
"collRarityStartY": 253,
"collRarityEndDiff": 53,
"collRarityWidth": 20,
"collLastBoarPos": [
382,
1037
],
"collLastBoarSize": [
329,
329
],
"collRecentLabelPos": [
485,
1070
],
"collFavBoarPos": [
26,
1037
],
"collFavBoarSize": [
329,
329
],
"collFavLabelPos": [
130,
1070
],
"collIndivBoarPos": [
741,
210
],
"collIndivBoarSize": [
1156,
1156
],
"eventSpawnSize": [
1491,
1069
],
"eventTitlePos": [
745,
167
],
"eventTitleWidth": 950,
"eventCornerImgSize": [
225,
225
],
"eventCornerImgPos1": [
20,
22
],
"eventCornerImgPos2": [
-1471,
22
],
"powSpawnDescriptionPos": [
745,
623
],
"powSpawnDescriptionWidth": 1100,
"powSpawnRewardPos": [
745,
999
],
"powTopLabelPos": [
745,
388
],
"powTopPos": [
745,
435
],
"powAvgLabelPos": [
745,
588
],
"powAvgPos": [
745,
635
],
"powPromptLabelPos": [
745,
788
],
"powPromptPos": [
745,
835
],
"powDataWidth": 1300,
"border": 25,
"embedMaxWidth": 1500,
"embedMinHeight": 204,
"embedTextPadding": 50,
"powPlusMinusMins": 1,
"powIntervalHours": 2,
"powDurationMillis": 30000,
"powExperiencedNum": 10,
"oneDay": 86400000,
"collectorIdle": 120000,
"emojiRows": 4,
"emojiCols": 4,
"triviaRows": 2,
"triviaCols": 2,
"fastCols": 3,
"leaderboardNumPlayers": 28,
"leaderboardRows": 14,
"leaderboardStart": [
486,
300
],
"leaderboardIncX": 950,
"leaderboardIncY": 70,
"leaderboardHeaderPos": [
300,
125
],
"leaderboardTopBotWidth": 1550,
"leaderboardFooterPos": [
960,
1330
],
"leaderboardEntryWidth": 875,
"marketSize": [
1894,
1388
],
"marketPerPage": 8,
"marketMaxOrders": 80,
"marketMaxBucks": 100000,
"marketOverImgStart": [
25,
205
],
"marketOverBuyStart": [
248,
698
],
"marketOverSellStart": [
248,
753
],
"marketOverIncX": 466,
"marketOverIncY": 593,
"marketOverCols": 4,
"marketOverImgSize": [
443,
443
],
"marketOverTextWidth": 420,
"marketBSImgPos": [
710,
205
],
"marketBSImgSize": [
1159,
1159
],
"marketBSRarityPos": [
358,
334
],
"marketBSNamePos": [
358,
400
],
"marketBSNameWidth": 620,
"marketBSBuyNowLabelPos": [
358,
568
],
"marketBSBuyNowPos": [
358,
639
],
"marketBSSellNowLabelPos": [
358,
764
],
"marketBSSellNowPos": [
358,
835
],
"marketBSBuyOrdLabelPos": [
358,
960
],
"marketBSBuyOrdPos": [
358,
1031
],
"marketBSSellOrdLabelPos": [
358,
1156
],
"marketBSSellOrdPos": [
358,
1227
],
"marketOrdImgPos": [
25,
395
],
"marketOrdImgSize": [