-
Notifications
You must be signed in to change notification settings - Fork 0
/
mh-spring-egg-hunt-helper.user.js
2090 lines (1790 loc) · 100 KB
/
mh-spring-egg-hunt-helper.user.js
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
// ==UserScript==
// @name 🐭️ MouseHunt - Spring Egg Hunt Helper
// @version 1.5.1
// @description Make the Spring Egg Hunt / Eggscavator interface better.
// @license MIT
// @author bradp
// @namespace bradp
// @match https://www.mousehuntgame.com/*
// @icon https://i.mouse.rip/mouse.png
// @grant none
// @require https://cdn.jsdelivr.net/npm/[email protected]/mousehunt-utils.js
// @run-at document-end
// ==/UserScript==
(function () {
'use strict';
/**
* The ways to get each egg.
*/
const ways = {
// Interface / Misc.
century_egg_convertible: 'Visit King\'s Crowns Tab of your <a href=\'/profile.php\'>Hunter Profile</a> if you have at least 100 silver crowns.',
century_of_luck_egg_convertible: 'Have a trap setup with 100 or more Luck.',
explorers_egg_convertible: 'Visit the <a href=\'https://www.mousehuntgame.com/travel.php?\'>Travel</a> page if you have at least 15 map pieces.',
freshly_painted_egg_convertible: 'Visit your <a href=\'https://www.mousehuntgame.com/preferences.php?tab=game_settings\'>Game Settings</a>.',
lucky_egg_convertible: 'Catch a mouse.',
market_mogul_egg_convertible: 'Visit the <a href=\'https://www.mousehuntgame.com/marketplace.php\'>Marketplace</a>.',
novice_journeyman_eggsweeper_convertible: 'Play Eggsweeper',
over_9000_egg_convertible: 'Have a trap setup with 9001 or more Power.',
teamwork_egg_convertible: 'Join a <a href=\'https://www.mousehuntgame.com/tournament.php\'>Tournament</a> or board a train.',
treasure_clue_egg_convertible: 'Get a map Treasure Clue from a mouse.',
workshop_egg_convertible: 'Visit the Workshop in Floating Islands.',
// Equip / Activate
enerchi_egg_convertible: 'Hunt with an Enerchi charm equipped.',
bottled_wind_egg_convertible: 'Hunt with Bottled Wind active.',
glowing_oil_egg_convertible: 'Hunt with Lanter Oil active.',
queso_wild_tonic_egg_convertible: 'Hunt with Wild Tonic active.',
chummy_egg_convertible: 'Hunt with Chum activated',
// Misc
deep_sea_egg_convertible: 'Dive more than 50,000 meters.',
rain_egg_convertible: 'Charge the Rain Meter to 100%.',
stealthy_egg_convertible: 'Have 100 or more stealth.',
storm_egg_convertible: 'Catch a mouse with Lightning Aura active or catch a mouse with Rain and Wind at 100%.',
wind_egg_convertible: 'Charge the Wind Meter to 100%.',
wordy_egg_convertible: 'Claim your writing rewards when finishing an encyclopedia.',
// Floating Islands.
ancient_jade_egg_convertible: 'Hunt on any Island with one or more Ancient Jade tiles.',
empyrean_seal_egg_convertible: 'Hunt on any Island with one or more Empyrean Seal tiles.',
loot_cache_egg_convertible: 'Hunt on any Island with one or more Loot Cache tiles.',
sky_gem_egg_convertible: 'Hunt on any Island with two or more Sky Glass tiles.',
sky_ore_egg_convertible: 'Hunt on any Island with two or more Sky Ore tiles.',
sky_pirate_egg_convertible: 'Hunt on any Island with one more Sky Pirate Den tiles.',
sky_sprocket_egg_convertible: 'Catch a Paragon on any Island with a Sky Sprocket tile.',
skysoft_silk_egg_convertible: 'Catch a Paragon on any Island with a Skysoft Silk tile.',
enchanted_wing_egg_convertible: 'Catch a Paragon on any Island with a Enchanted Wing tile.',
cloudstone_bangle_egg_convertible: 'Catch a Paragon on any Island with a Cloudstone Bangle tile.',
sky_conqueror_egg_convertible: 'Clear 40 steps on a Low Altitude Island or High Altitude Island.',
sky_explorer_egg_convertible: 'Clear 40 steps on any Island or Vault.',
// Vrift
puppet_floor_egg_convertible: 'Catch a mouse on a Puppet Floor (1).',
thief_floor_egg_convertible: 'Catch a mouse on a Thief Floor (2).',
melee_floor_egg_convertible: 'Catch a mouse on a Melee Floor (3).',
bard_floor_egg_convertible: 'Catch a mouse on a Bard Floor (4).',
magic_floor_egg_convertible: 'Catch a mouse on a Magic Floor (5).',
noble_floor_egg_convertible: 'Catch a mouse on a Noble Floor (6).',
dust_floor_egg_convertible: 'Catch a mouse on a Dusty Floor (7).',
tower_secret_egg_convertible: { text: 'Catch a Champion mouse with Secret Research activated.', mice: ['Shade of the Eclipse'] },
tower_sigil_egg_convertible: { text: 'Catch a Champion mouse with Sigil Hunter activated.', mice: ['Shade of the Eclipse'] },
tower_siphon_egg_convertible: { text: 'Catch a Champion mouse with Siphon activated.', mice: ['Shade of the Eclipse'] },
zokor_fealty_egg_convertible: 'Catch a mouse in a Fealty District.',
zokor_scholar_egg_convertible: 'Catch a mouse in a Scholar District.',
zokor_tech_egg_convertible: 'Catch a mouse in a Tech District.',
zokor_treasury_egg_convertible: 'Catch a mouse in a Treasury District.',
// Mice.
'2011_spring_hunt_egg_6': { mice: ['Carefree Cook', 'Chocolate Gold Foil', 'Chocolate Overload', 'Coco Commander', 'Egg Painter', 'Egg Scrambler', 'Eggscavator', 'Eggsplosive Scientist', 'Eggsquisite Entertainer', 'Hardboiled', 'Hare Razer', 'Onion Chopper', 'Pan Slammer', 'Sinister Egg Painter', 'Spring Sprig'] },
'21k_golden_egg_convertible': { mice: ['Carefree Cook', 'Chocolate Gold Foil', 'Chocolate Overload', 'Coco Commander', 'Egg Painter', 'Egg Scrambler', 'Eggscavator', 'Eggsplosive Scientist', 'Eggsquisite Entertainer', 'Hardboiled', 'Hare Razer', 'Onion Chopper', 'Pan Slammer', 'Sinister Egg Painter', 'Spring Sprig'] },
abominable_snow_egg_convertible: { mice: ['Abominable Snow'] },
absolute_acolyte_egg_convertible: { mice: ['Absolute Acolyte'] },
acolyte_egg_convertible: { mice: ['Acolyte'] },
aether_egg_convertible: { mice: ['Aether'] },
ascended_elder_egg_convertible: { mice: ['Ascended Elder'] },
assassin_egg_convertible: { mice: ['Assassin'] },
balack_the_banished_egg_convertible: { mice: ['Balack the Banished'] },
barnacle_egg_convertible: { mice: ['Barnacle Beautician', 'Bottom Feeder', 'Crabolia', 'Deep Sea Diver', 'Deranged Deckhand', 'Dread Pirate Mousert', 'Pirate Anchor', 'Sunken Banshee', 'Swashblade', 'Clownfish', 'Eel', 'Manatee', 'Mlounder Flounder', 'Stingray'] },
barricade_egg_convertible: { mice: ['Bat Mouse', 'Ghost Mouse', 'Mousevina von Vermin', 'Mummy Mouse', 'Vampire Mouse'] },
bbb_egg_convertible: { mice: ['Big Bad Burroughs'] },
black_widow_egg_convertible: { mice: ['Black Widow'] },
blue_argyle_egg_convertible: { mice: ['Carefree Cook', 'Chocolate Gold Foil', 'Chocolate Overload', 'Coco Commander', 'Egg Painter', 'Egg Scrambler', 'Eggscavator', 'Eggsplosive Scientist', 'Eggsquisite Entertainer', 'Hardboiled', 'Hare Razer', 'Onion Chopper', 'Pan Slammer', 'Sinister Egg Painter', 'Spring Sprig'] },
bristle_woods_rift_egg_convertible: { mice: ['Absolute Acolyte', 'Carrion Medium', 'Chamber Cleaver', 'Chronomaster', 'Clockwork Timespinner', 'Dread Knight', 'Epoch Golem', 'Harbinger of Death', 'Portal Paladin', 'Portal Plunderer', 'Portal Pursuer', 'Record Keeper', 'Record Keeper\'s Assistant', 'Sentient Slime', 'Shackled Servant', 'Skeletal Champion', 'Timeless Lich', 'Timelost Thaumaturge', 'Timeslither Pythoness', 'Vigilant Ward'] },
brown_egg_convertible: { mice: ['Brown'] },
bubbling_egg_convertible: { mice: ['Angelfish', 'Betta', 'Cuttle', 'Eel', 'Jellyfish', 'Koimaid', 'Manatee', 'Puffer', 'Serpent Monster', 'Stingray'] },
burglar_egg_convertible: { mice: ['Burglar'] },
captain_croissant_egg_convertible: { mice: ['Captain Croissant'] },
caring_egg_convertible: { mice: ['Carefree Cook', 'Chocolate Gold Foil', 'Chocolate Overload', 'Coco Commander', 'Egg Painter', 'Egg Scrambler', 'Eggscavator', 'Eggsplosive Scientist', 'Eggsquisite Entertainer', 'Hardboiled', 'Hare Razer', 'Onion Chopper', 'Pan Slammer', 'Sinister Egg Painter', 'Spring Sprig'] },
cave_crystal_egg_convertible: { mice: ['Crystal Golem', 'Crystal Lurker', 'Crystal Observer', 'Crystal Queen'] },
cave_diamond_egg_convertible: { mice: ['Crystal Behemoth', 'Diamondhide', 'Huntereater'] },
chamber_cleaver_egg_convertible: { mice: ['Chamber Cleaver'] },
cherry_egg_convertible: { mice: ['Cherry'] },
cherry_sprite_egg_convertible: { mice: ['Cherry Sprite'] },
chrono_egg_convertible: { mice: ['Chrono'] },
clean_egg_convertible: { mice: ['Hazmat', 'Lab Technician'] },
clockwork_egg_convertible: { mice: ['Pocketwatch'] },
cook_egg_convertible: { mice: ['Cook'] },
coral_egg_convertible: { mice: ['Coral Corral', 'Angelfish', 'Clownfish', 'Coral', 'Cuttle', 'Jellyfish', 'Mlounder Flounder'] },
cork_egg_convertible: { mice: ['Burly Bruiser', 'Cork Defender', 'Corkataur', 'Corky, the Collector', 'Fuzzy Drake', 'Horned Cork Hoarder', 'Rambunctious Rain Rumbler'] },
corky_the_collector_egg_convertible: { mice: ['Corky, the Collector'] },
corrupt_egg_convertible: { mice: ['Corrupt'] },
crate_egg_convertible: { mice: ['Crate Camo', 'Cute Crate Carrier'] },
crimson_egg_convertible: { mice: ['Bat Mouse', 'Coffin Zombie', 'Ghost Mouse', 'Mousevina von Vermin', 'Mummy Mouse', 'Vampire Mouse'] },
crown_collector_egg_convertible: { mice: ['Crown Collector'] },
crystal_behemoth_egg_convertible: { mice: ['Crystal Behemoth'] },
crystal_library_egg_convertible: { mice: ['Effervescent', 'Flutterby', 'Infiltrator'] },
cursed_librarian_egg_convertible: { mice: ['Cursed Librarian'] },
dawn_egg_convertible: { mice: ['Battering Ram', 'Dawn Guardian', 'Monster of the Meteor'] },
day_egg_convertible: { mice: ['Hardworking Hauler', 'Meteorite Miner', 'Meteorite Mover', 'Meteorite Snacker', 'Mining Materials Manager', 'Mischievous Meteorite Miner'] },
decrepit_tentacle_egg_convertible: { mice: ['Decrepit Tentacle Terror'] },
deep_egg_convertible: { mice: ['Deep'] },
derr_egg_convertible: { mice: ['Derr Chieftain', 'Renegade'] },
desert_nomad_egg_convertible: { mice: ['Desert Nomad'] },
diamond_egg_convertible: { mice: ['Diamond'] },
dojo_student_egg_convertible: { mice: ['Student of the Cheese Belt', 'Student of the Cheese Claw', 'Student of the Cheese Fang'] },
dragon_egg_convertible: { mice: ['Dragon'] },
dragonshard_egg_convertible: { mice: ['Bearded Elder', 'Bruticus, the Blazing', 'Cinderstorm', 'Ignatia', 'Kalor\'ignis of the Geyser', 'Mild Spicekin', 'Sizzle Pup', 'Smoldersnap', 'Stormsurge, the Vile Tempest'] },
drheller_egg_convertible: { mice: ['General Drheller'] },
eclipse_egg_convertible: { mice: ['Eclipse'] },
elub_egg_convertible: { mice: ['Elub Chieftain', 'Vanquisher'] },
empyrean_empress_egg_convertible: { mice: ['Empyrean Empress'] },
enlarged_rift_egg_convertible: { mice: ['Agitated Gentle Giant', 'Brawny', 'Cyborg', 'Dream Drifter', 'Excitable Electric', 'Goliath Field', 'Greyrun', 'Micro', 'Mighty Mole', 'Raw Diamond', 'Rift Guardian', 'Riftweaver', 'Shard Centurion', 'Spiritual Steel', 'Supernatural', 'Wealth', 'Amplified Brown', 'Amplified Grey', 'Amplified White', 'Assassin Beast', 'Automated Sentry', 'Big Bad Behemoth Burroughs', 'Boulder Biter', 'Clump', 'Count Vampire', 'Cyber Miner', 'Cybernetic Specialist', 'Doktor', 'Evil Scientist', 'Itty Bitty Rifty Burroughs', 'Lambent', 'Lycanoid', 'Master Exploder', 'Mecha Tail', 'Menace of the Rift', 'Monstrous Abomination', 'Phase Zombie', 'Plutonium Tentacle', 'Pneumatic Dirt Displacement', 'Portable Generator', 'Prototype', 'Radioactive Ooze', 'Rancid Bog Beast', 'Revenant', 'Rift Bio Engineer', 'Rifterranian', 'Robat', 'Super Mega Mecha Ultra RoboGold', 'Surgeon Bot', 'Tech Ravenous Zombie', 'Tomb Exhumer', 'Toxic Avenger', 'Toxikinetic', 'Zombot Unipire the Third', 'Bloomed Sylvan', 'Cherry Sprite', 'Cranky Caterpillar', 'Cyclops Barbarian', 'Faction Boss', 'Mossy Moosker', 'Red-Eyed Watcher Owl', 'Spirit Fox', 'Treant Queen', 'Centaur Ranger', 'Faction Boss', 'Fungal Frog', 'Karmachameleon', 'Naturalist', 'Nomadic Warrior', 'Red Coat Bear', 'Rift Tiger', 'Spirit of Balance', 'Crazed Goblin', 'Grizzled Silth', 'Medicine', 'Tree Troll', 'Tri-dra', 'Faction Boss', 'Twisted Treant', 'Water Sprite', 'Winged Harpy', 'Gilded Leaf', 'Monstrous Black Widow'] },
essence_guardian_egg_convertible: { mice: ['Essence Guardian'] },
ethereal_librarian_egg_convertible: { mice: ['Ethereal Librarian'] },
experimental_egg_convertible: { mice: ['Clumsy Chemist Mouse', 'Sludge Scientist Mouse'] },
fog_egg_convertible: { mice: ['Fog'] },
friendly_egg_convertible: { mice: ['Carefree Cook', 'Chocolate Gold Foil', 'Chocolate Overload', 'Coco Commander', 'Egg Painter', 'Egg Scrambler', 'Eggscavator', 'Eggsplosive Scientist', 'Eggsquisite Entertainer', 'Hardboiled', 'Hare Razer', 'Onion Chopper', 'Pan Slammer', 'Sinister Egg Painter', 'Spring Sprig'] },
ful_mina_egg_convertible: { mice: ['Ful\'Mina, The Mountain Queen'] },
fungal_egg_convertible: { mice: ['Bitter Root', 'Floating Spore', 'Funglore', 'Lumahead', 'Mouldy Mole', 'Mush', 'Mushroom Sprite', 'Nightshade Masquerade', 'Quillback', 'Spiked Burrower', 'Spore Muncher', 'Sporeticus'] },
furoma_egg_convertible: { mice: ['Dojo Sensei', 'Master of the Cheese Belt', 'Master of the Cheese Claw', 'Master of the Cheese Fang', 'Master of the Dojo'] },
gargantua_egg_convertible: { mice: ['Gargantuamouse'] },
gate_guardian_egg_convertible: { mice: ['Gate Guardian'] },
geyser_egg_convertible: { mice: ['Bearded Elder', 'Bruticus, the Blazing', 'Cinderstorm', 'Ignatia', 'Kalor\'ignis of the Geyser', 'Mild Spicekin', 'Sizzle Pup', 'Smoldersnap', 'Stormsurge, the Vile Tempest'] },
gilded_leaf_egg_convertible: { mice: ['Gilded Leaf'] },
gnawnia_egg_convertible: { mice: ['Brown', 'Cowardly', 'Field', 'Granite', 'Grey', 'Ninja', 'Spud', 'Steel', 'White'] },
gnawnian_express_egg_convertible: { mice: ['Angry Train Staff', 'Automorat', 'Bartender', 'Black Powder Thief', 'Cannonball', 'Coal Shoveller', 'Requiries:', 'Dusty Coal Charm', 'Crate Camo', 'Cute Crate Carrier', 'Dangerous Duo', 'Farrier', 'Fuel', 'Hookshot', 'Magmatic Crystal Thief', 'Magmatic Golem', 'Mouse With No Name', 'Mysterious Traveller', 'Parlour Player', 'Passenger', 'Photographer', 'Sharpshooter', 'Steel Horse Rider', 'Stoutgear', 'Stowaway', 'Stuffy Banker', 'Supply Hoarder', 'Tonic Salesman', 'Train Conductor', 'Train Engineer', 'Travelling Barber', 'Upper Class Lady', 'Warehouse Manager'] },
green_plaid_egg_convertible: { mice: ['Carefree Cook', 'Chocolate Gold Foil', 'Chocolate Overload', 'Coco Commander', 'Egg Painter', 'Egg Scrambler', 'Eggscavator', 'Eggsplosive Scientist', 'Eggsquisite Entertainer', 'Hardboiled', 'Hare Razer', 'Onion Chopper', 'Pan Slammer', 'Sinister Egg Painter', 'Spring Sprig'] },
grey_egg_convertible: { mice: ['Grey'] },
grizzled_silth_egg_convertible: { mice: ['Grizzled Silth'] },
haunted_egg_convertible: { mice: ['Keeper\'s Assistant', 'Ghost', 'Mummy', 'Ravenous Zombie', 'Vampire'] },
huntington_egg_convertible: { mice: ['Bottled', 'Captain', 'Squeaken'] },
hydra_egg_convertible: { mice: ['Hydra'] },
iceberg_egg_convertible: { mice: ['Iceblock', 'Polar Bear', 'Snowblind', 'Wolfskie'] },
icewing_egg_convertible: { mice: ['Icewing'] },
icewing_generals_egg_convertible: { mice: ['Lady Coldsnap', 'Princess Fist', 'Lord Splodington', 'General Drheller'] },
jod_egg_convertible: { mice: ['Chitinous', 'Fetid Swamp', 'Jurassic', 'Magma Carrier', 'Primal', 'Stonework Warrior'] },
kalor_ignis_egg_convertible: { mice: ['Kalor\'ignis of the Geyser'] },
living_garden_egg_convertible: { mice: ['Barkshell', 'Cursed Thief', 'Ethereal Engineer', 'Serpentine', 'Spiky Devil', 'Thistle'] },
living_salt_egg_convertible: { mice: ['Living Salt'] },
m400_egg_convertible: { mice: ['M400'] },
mage_weaver_egg_convertible: { mice: ['Mage Weaver'] },
magic_egg_convertible: { mice: ['Magic'] },
magmatic_golem_egg_convertible: { mice: ['Magmatic Golem'] },
master_of_the_dojo_egg_convertible: { mice: ['Master of the Dojo'] },
mighty_mole_egg_convertible: { mice: ['Mighty Mole'] },
monster_egg_convertible: { mice: ['Monster'] },
monster_of_the_meteor_egg_convertible: { mice: ['Monster of the Meteor'] },
mouse_scale_egg_convertible: { mice: ['Scale Society, Betta, Clownfish, Koimaid, Mlounder Flounder, Puffer'] },
muridae_egg_convertible: { mice: ['Glass Blower', 'Limestone Miner', 'Lumberjack'] },
mutant_mongrel_egg_convertible: { mice: ['Mutant Mongrel'] },
mutated_behemoth_egg_convertible: { mice: ['Mutated Behemoth'] },
mystic_king_egg_convertible: { mice: ['Mystic King'] },
naturalist_egg_convertible: { mice: ['Naturalist'] },
nerg_egg_convertible: { mice: ['Conqueror', 'Nerg Chieftain'] },
nibbler_egg_convertible: { mice: ['Nibbler'] },
night_egg_convertible: { mice: ['Alpha Weremouse', 'Arcane Summoner', 'Battering Ram', 'Cursed Taskmaster', 'Hypnotized Gunslinger', 'Meteorite Golem', 'Meteorite Mystic', 'Mischievous Wereminer', 'Night Shift Materials Manager', 'Night Watcher', 'Nightfire', 'Nightmancer', 'Reveling Lycanthrope', 'Wealthy Werewarrior', 'Werehauler', 'Wereminer'] },
nightshade_egg_convertible: { mice: ['Nightshade Flower Girl', 'Nightshade Masquerade', 'Nightshade Nanny', 'Nightshade Maiden'] },
null_rift_egg_convertible: { mice: ['Menace of the Rift'] },
overflowing_pump_egg_convertible: { mice: ['Sleepy Merchant', 'Tiny Saboteur', 'Pump Raider', 'Croquet Crusher', 'Queso Extractor', 'Queen Quesada'] },
oxygen_baron_egg_convertible: { mice: ['Angelfish', 'Betta', 'Cuttle', 'Eel', 'Jellyfish', 'Koimaid', 'Manatee', 'Oxygen Baron', 'Puffer', 'Stingray'] },
peggy_egg_convertible: { mice: ['Peggy the Plunderer'] },
pirate_crew_egg_convertible: { mice: ['Barmy Gunner', 'Bilged Boatswain', 'Cabin Boy', 'Corrupt Commodore', 'Dashing Buccaneer'] },
pirate_egg_convertible: { mice: ['Pirate'] },
pressure_egg_convertible: { mice: ['Emberstone Scaled', 'Pyrehyde', 'Steam Sailor', 'Vaporior', 'Warming Wyvern'] },
pygmy_swarm_egg_convertible: { mice: ['Swarm of Pygmy Mice'] },
queso_nachore_egg_convertible: { mice: ['Ore Chipper', 'Rubble Rummager', 'Nachore Golem', 'Rubble Rouser', 'Grampa Golem', 'Fiery Crusher', 'Nachous, The Molten'] },
queso_pump_egg_convertible: { mice: ['Tiny Saboteur', 'Pump Raider', 'Croquet Crusher', 'Queso Extractor'] },
queso_spice_egg_convertible: { mice: ['Spice Farmer', 'Granny Spice', 'Spice Sovereign', 'Spice Finder', 'Spice Raider', 'Spice Reaper', 'Inferna, The Engulfed'] },
quesodillo_egg_convertible: { mice: ['Quesodillo'] },
real_lich_egg_convertible: { mice: ['Derr Lich', 'Nerg Lich', 'Elub Lich'] },
realm_ripper_egg_convertible: { mice: ['Realm Ripper'] },
relic_hunter_egg_convertible: { mice: ['Relic Hunter'] },
richest_egg_convertible: { mice: ['Richard the Rich', 'Fortuitous Fool'] },
rift_dojo_master_egg_convertible: { mice: ['Grand Master of the Dojo'] },
rift_egg_convertible: { mice: ['Cyborg', 'Greyrun', 'Shard Centurion', 'Spiritual Steel', 'Rift Guardian', 'Raw Diamond', 'Wealth'] },
rift_fang_egg_convertible: { mice: ['Count Vampire'] },
rift_mist_egg_convertible: { mice: ['Amplified Brown', 'Amplified Grey', 'Amplified White', 'Assassin Beast', 'Automated Sentry', 'Big Bad Behemoth Burroughs', 'Boulder Biter', 'Clump', 'Count Vampire', 'Cyber Miner', 'Cybernetic Specialist', 'Doktor', 'Evil Scientist', 'Itty Bitty Rifty Burroughs', 'Lambent', 'Lycanoid', 'Master Exploder', 'Mecha Tail', 'Menace of the Rift', 'Monstrous Abomination', 'Phase Zombie', 'Plutonium Tentacle', 'Pneumatic Dirt Displacement', 'Portable Generator', 'Prototype', 'Radioactive Ooze', 'Rancid Bog Beast', 'Revenant', 'Rift Bio Engineer', 'Rifterranian', 'Robat', 'Super Mega Mecha Ultra RoboGold', 'Surgeon Bot', 'Tech Ravenous Zombie', 'Tomb Exhumer', 'Toxic Avenger', 'Toxikinetic', 'Zombot Unipire the Third'] },
rift_venom_egg_convertible: { mice: ['Monstrous Black Widow'] },
riptide_egg_convertible: { mice: ['Riptide'] },
rrs_egg_convertible: { mice: ['Retired Minotaur Mouse'] },
runny_egg_convertible: { mice: ['Extreme Everysports', 'Hurdle', 'Trampoline', 'Wave Racer', 'Winter Games'] },
salty_sea_egg_convertible: { mice: ['Ancient of the Deep', 'Angelfish', 'Angler', 'Barnacle Beautician', 'Barracuda', 'Betta', 'Bottom Feeder', 'Carnivore', 'City Noble', 'City Worker', 'Clownfish', 'Clumsy Carrier', 'Coral', 'Coral Cuddler', 'Coral Dragon', 'Coral Gardener', 'Coral Guard', 'Coral Harvester', 'Coral Queen', 'Crabolia', 'Cuttle', 'Deep Sea Diver', 'Deranged Deckhand', 'Derpshark', 'Dread Pirate Mousert', 'Eel', 'Elite Guardian', 'Enginseer', 'Guppy', 'Hydrologist', 'Jellyfish', 'Koimaid', 'Manatee', 'Mermousette', 'Mershark', 'Mlounder Flounder', 'Octomermaid', 'Old One', 'Oxygen Baron', 'Pearl', 'Pearl Diver', 'Pirate Anchor', 'Puffer', 'Saltwater Axolotl', 'Sand Dollar Diver', 'Sand Dollar Queen', 'School of Mish', 'Seadragon', 'Serpent Monster', 'Spear Fisher', 'Stingray', 'Sunken Banshee', 'Sunken Citizen', 'Swashblade', 'Tadpole', 'Treasure Hoarder', 'Treasure Keeper', 'Tritus', 'Turret Guard', 'Urchin King'] },
sand_dollar_egg_convertible: { mice: ['Mlounder Flounder', 'Pearl', 'Pearl Diver', 'Saltwater Axolotl', 'Sand Dollar Diver', 'Sand Dollar Queen', 'Treasure Hoarder', 'Treasure Keeper'] },
sarcophamouse_egg_convertible: { mice: ['Sarcophamouse'] },
scalloped_pink_egg_convertible: { mice: ['Carefree Cook', 'Chocolate Gold Foil', 'Chocolate Overload', 'Coco Commander', 'Egg Painter', 'Egg Scrambler', 'Eggscavator', 'Eggsplosive Scientist', 'Eggsquisite Entertainer', 'Hardboiled', 'Hare Razer', 'Onion Chopper', 'Pan Slammer', 'Sinister Egg Painter', 'Spring Sprig'] },
scavenger_egg_convertible: { mice: ['Scavenger'] },
seasonal_garden_egg_convertible: { mice: ['Frostbite', 'Harvest Harrier', 'Puddlemancer', 'Stinger'] },
sharing_egg_convertible: { mice: ['Carefree Cook', 'Chocolate Gold Foil', 'Chocolate Overload', 'Coco Commander', 'Egg Painter', 'Egg Scrambler', 'Eggscavator', 'Eggsplosive Scientist', 'Eggsquisite Entertainer', 'Hardboiled', 'Hare Razer', 'Onion Chopper', 'Pan Slammer', 'Sinister Egg Painter', 'Spring Sprig'] },
sharpshooter_egg_convertible: { mice: ['Sharpshooter'] },
shattered_egg_convertible: { mice: ['Shattered Carmine', 'Dark Magi', 'King Scarab'] },
shelder_egg_convertible: { mice: ['Shelder'] },
silth_egg_convertible: { mice: ['Silth'] },
slushy_shoreline_egg_convertible: { mice: ['Chipper', 'Icebreaker', 'Incompetent Ice Climber', 'Living Ice', 'Polar Bear', 'Saboteur', 'Snow Bowler', 'Snow Slinger', 'Snow Sniper', 'Snow Soldier', 'Yeti'] },
spud_egg_convertible: { mice: ['Spud'] },
stripy_red_egg_convertible: { mice: ['Carefree Cook', 'Chocolate Gold Foil', 'Chocolate Overload', 'Coco Commander', 'Egg Painter', 'Egg Scrambler', 'Eggscavator', 'Eggsplosive Scientist', 'Eggsquisite Entertainer', 'Hardboiled', 'Hare Razer', 'Onion Chopper', 'Pan Slammer', 'Sinister Egg Painter', 'Spring Sprig'] },
sunken_treasure_egg_convertible: { mice: ['Pearl Diver', 'Pearl', 'Treasure Hoarder', 'Treasure Keeper'] },
technic_king_egg_convertible: { mice: ['Technic King'] },
thistle_egg_convertible: { mice: ['Thistle'] },
thunderlord_egg_convertible: { mice: ['⚡Thunderlord⚡'] },
tier_five_egg_convertible: { mice: ['Aquos', 'Black Mage', 'Ignis', 'Terra', 'Zephyr'] },
tier_four_egg_convertible: { mice: ['Cowbell', 'Dancer', 'Drummer', 'Fiddler', 'Guqin Player'] },
tiny_egg_convertible: { mice: ['Tiny'] },
tower_elixir_egg_convertible: { mice: ['Elixir Maker'] },
tower_umbra_egg_convertible: { mice: ['The Total Eclipse'] },
toxic_spill_egg_convertible: { mice: ['Biohazard', 'Bog Beast', 'Gelatinous Octahedron', 'Hazmat', 'Lab Technician', 'Monster Tail', 'Mutant Mongrel', 'Mutant Ninja', 'Mutated Behemoth', 'Mutated Siblings', 'Outbreak Assassin', 'Plague Hag', 'Scrap Metal Monster', 'Slimefist', 'Sludge', 'Sludge Soaker', 'Sludge Swimmer', 'Spore', 'Swamp Runner', 'Telekinetic Mutant', 'Tentacle', 'The Menace', 'Toxic Warrior'] },
tritus_egg_convertible: { mice: ['Tritus'] },
twisted_lilly_egg_convertible: { mice: ['Twisted Lilly'] },
underwater_predator_egg_convertible: { mice: ['Ancient of the Deep', 'Barracuda', 'Carnivore', 'Clownfish', 'Derpshark', 'Serpent Monster', 'Spear Fisher', 'Tritus'] },
unstable_zokor_crystal_egg_convertible: { mice: ['Molten Midas Mouse'] },
valour_egg_convertible: { mice: ['Bandit', 'Berserker', 'Dwarf', 'Gold', 'Pugilist'] },
wanted_poster_egg_convertible: { mice: ['Bounty Hunter'] },
warden_of_fog_egg_convertible: { mice: ['Warden of Fog'] },
warden_of_frost_egg_convertible: { mice: ['Warden of Frost'] },
warden_of_rain_egg_convertible: { mice: ['Warden of Rain'] },
warden_of_wind_egg_convertible: { mice: ['Warden of Wind'] },
warmonger_egg_convertible: { mice: ['Warmonger'] },
warpath_egg_convertible: { mice: ['Crimson Commander', 'Flame Ordnance', 'Gargantuamouse', 'Sand Cavalry', 'Sandwing Cavalry', 'Warmonger'] },
wavy_purple_egg_convertible: { mice: ['Carefree Cook', 'Chocolate Gold Foil', 'Chocolate Overload', 'Coco Commander', 'Egg Painter', 'Egg Scrambler', 'Eggscavator', 'Eggsplosive Scientist', 'Eggsquisite Entertainer', 'Hardboiled', 'Hare Razer', 'Onion Chopper', 'Pan Slammer', 'Sinister Egg Painter', 'Spring Sprig'] },
whisker_woods_egg_convertible: { mice: ['Centaur', 'Eagle Owl', 'Elven Princess', 'Nomad', 'Wicked Witch of Whisker Woods', 'Wiggler'] },
white_egg_convertible: { mice: ['White'] },
zurreal_egg_convertible: { mice: ['Zurreal the Eternal'] },
zzt_egg_convertible: { mice: ['Mystic Rook', 'Technic Rook'] },
mythweaver_egg_convertible: { mice: ['Mythweaver'] },
monstrous_midge_egg_convertible: { mice: ['Monstrous Midge'] },
architeuthulhu_egg_convertible: { mice: ['Architeuthulhu'] },
};
/**
* Transparent and highres images for all the eggs.
*/
const eggImages = {
'21k_golden_egg_convertible': 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3ada6ff18f89d020908e35fee2de7a45.png?cv=2',
abominable_snow_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/9dd4706d4ca6b28332046ba180f69287.png?cv=2',
absolute_acolyte_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d90069102ac0edad8555875b5da3d87f.png?cv=2',
acolyte_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/35766857704c957e242ae0f74c872a48.png?cv=2',
aether_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d44a47f4e08a8434b2a41d73f721ea6f.png?cv=2',
ancient_jade_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/644ad0dcc59d7048e43b3606a800f660.png?cv=2',
ascended_elder_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/fef8364694b5a21479b66d9072c10da8.png?cv=2',
assassin_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2958dca15f7384abbcf04a74a75b7f72.png?cv=2',
balack_the_banished_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/33937d2da8507da8437bd8a49dfed351.png?cv=2',
bard_floor_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/5c623ae3c79b2778ff1ef46480940497.png?cv=2',
barnacle_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/19600035c31d3e30646411af8ffc54de.png?cv=2',
baron_count_eggsweeper_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/29c23a04682b44e0875469dbd3e72ba7.png?cv=2',
barricade_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/219505567261c31535aeae15e7c45a0e.png?cv=2',
bbb_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/b95e9e16f38c872ba699881d6cbb43c3.png?cv=2',
blue_argyle_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/e09817e3d5a14bc2cbb4aeb128f55cea.png?cv=2',
bottled_wind_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/4c3c721315831603676d759dd2921f5f.png?cv=2',
bristle_woods_rift_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/cc7e4a6fceeb699fc7713e3c79a798ee.png?cv=2',
brown_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3ecfb08fe8e7ce5317a827cc0edcc76b.png?cv=2',
bubbling_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/0efbfce5fb0243e11da52d5631f16a7c.png?cv=2',
burglar_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/72850ea1ab986d6008c18d69e87ae710.png?cv=2',
captain_croissant_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/471c76722899f41d415f8b8043a5815b.png?cv=2',
cave_crystal_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/4acc3426ef7d78e06418669e558f2183.png?cv=2',
cave_diamond_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/5e2fe2dd9a7c9661ee31969a933080c4.png?cv=2',
century_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3bddd357f1582b577168e894ecde1ed3.png?cv=2',
century_of_luck_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/89ac76ffeee0a115c549355cc5bf8d14.png?cv=2',
chamber_cleaver_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/0411d830abcf7f3974faa9cc10cdc975.png?cv=2',
cherry_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/5a3cc361232eb34aa5d081ba960eab8e.png?cv=2',
cherry_sprite_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3c90bb7355933f4c09839c3451c7f560.png?cv=2',
chrono_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/60a6573a1391410960d7e18f3e468d7d.png?cv=2',
clean_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/033ce65bafc0587eb212051245cdd254.png?cv=2',
clockwork_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/b9f02917b12eeeb458e4248643efd944.png?cv=2',
cloudstone_bangle_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/cebd5c3c1e80a2ecd31f90a7f7cd82b6.png?cv=2',
cook_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/265dd09e0e376d5cc24c67787c3ba8c8.png?cv=2',
coral_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/e5f50962709dc6988d79743fb3e311b4.png?cv=2',
cork_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/28eaf63af32fe6082e308f7b916ab019.png?cv=2',
corky_the_collector_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/85aa7dd96971188eb1f2c912302baffc.png?cv=2',
corrupt_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/c3290823759389d177aaa36601b52a16.png?cv=2',
crate_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/21949f9008eaa3961d12d32034ee8b09.png?cv=2',
crimson_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/605588c17cb422e4a21116fa1a723e1e.png?cv=2',
crown_collector_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d092ab1bea462b1e792211fc52f4f63a.png?cv=2',
crystal_behemoth_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/b4a50b302df30a66734aa18d92c3062e.png?cv=2',
crystal_library_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/5b6687c75e3d77474bac749c74adbf0d.png?cv=2',
cursed_librarian_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/12a4e405ccc4c34925e28e5d9d1106b9.png?cv=2',
dawn_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/49e417e50ebabb68c33aa19ce05376ee.png?cv=2',
day_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2f05a09437dee3ad1c46ab5da0c2a3d8.png?cv=2',
decrepit_tentacle_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/533fa05f06b805510c0f5e31940a3ee7.png?cv=2',
deep_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/b5d96938cfad6e037d7792c2eb1c45d3.png?cv=2',
deep_sea_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/8a604d3444dcd43b7769596d80bc63ed.png?cv=2',
derr_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/86df3ec07216a0f441135d81f409f988.png?cv=2',
desert_nomad_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ec3714130b28914b2c4ef28d6a5614bd.png?cv=2',
diamond_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/25098864302043b8335c8d5e6f5c1787.png?cv=2',
dojo_student_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/4d241f49f0d357c7a4445543794466f6.png?cv=2',
dragon_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/c45ce42da58b335f0895b675f4ee08d2.png?cv=2',
dragonshard_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2befdc0c2e8f6745c1aba36d7c99a414.png?cv=2',
drheller_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/c0571bd2951b090121969288b5fae6fc.png?cv=2',
duke_grandduke_eggsweeper_2020_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/a6c27aa72a249b9cd133d4632224af40.png?cv=2',
dust_floor_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/4d40431ca159d9fca1f6528bea6ec5c2.png?cv=2',
dusted_baron_count_eggsweeper_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/c0c8703d62a392ca0494f03f19acd281.png?cv=2',
dusted_duke_grandduke_eggsweeper_2020_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/8f1f5c3b2ffb968b9c9dd4709fd7bc2b.png?cv=2',
dusted_master_lord_eggsweeper_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/b2dca9eed66d32117932cbc94e6bfd01.png?cv=2',
dusted_novice_journeyman_eggsweeper_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/656539f39d69f25de835a44ac0a448c6.png?cv=2',
eclipse_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/aa3dbaf5bac08d425c3478b1e30db358.png?cv=2',
eggstra_charge_trinket: 'https://www.mousehuntgame.com/images/items/trinkets/transparent_thumb/18f0f0d9212a2b8708ef2fe1833a8588.png?cv=2',
eggstra_trinket: 'https://www.mousehuntgame.com/images/items/trinkets/transparent_thumb/70e0c61a1a7136cb4b04b6993ad0802c.png?cv=2',
elub_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/a9a58b3d5b68167a75f6d0dad36ce20f.png?cv=2',
empyrean_empress_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/dc4635c6d734f802a07835a387f8b783.png?cv=2',
empyrean_seal_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/98526624e56160e7c81909d0c99cc9dc.png?cv=2',
enchanted_wing_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/77df854f321ccea97ce3fbb6ca12bce3.png?cv=2',
enerchi_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/8ec1e39f9ad8553411d9662baafd7537.png?cv=2',
enlarged_rift_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/c249d131cd83beb1d7426034231f6ba6.png?cv=2',
essence_guardian_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ee8b71b0f6f0a0e57fcfb98d968e6709.png?cv=2',
ethereal_librarian_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/fb9c74c018bb3f9720b0bd7e7742a3ff.png?cv=2',
experimental_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ab2281f3849363e97ff1569e608326e6.png?cv=2',
explorers_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/8d10ced6585b17be3e479782d8e92e6d.png?cv=2',
fog_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/bb2cf8cf2b39b57270e908e0fb07a254.png?cv=2',
freshly_painted_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/822eaeb800c2b4fe33ec3b44a497b73c.png?cv=2',
fungal_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/b11645d3c46dcf6f29bb20d13ddd5fd0.png?cv=2',
furoma_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/5de2763fa921e48fabe9c524f03d2b82.png?cv=2',
gargantua_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/bf891dc32dd31f7ed472e94767afedbb.png?cv=2',
gate_guardian_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/b06817007a3e8d32898e0316af12e2c6.png?cv=2',
geyser_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ad5229f2e14040ba4f7954b88bee67fe.png?cv=2',
gilded_leaf_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/8e65dabe86c48a81a5e17dab2366636c.png?cv=2',
glowing_oil_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/4a1b8eac9c50a96a15da5677c1df5501.png?cv=2',
gnawnia_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/a7986350b3d660201d9bfcab12c8a5ad.png?cv=2',
gnawnian_express_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/143ce299c5e4f36b4917129df5b0dcfb.png?cv=2',
green_plaid_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/887162c61d0e01985ffc12e41c03d952.png?cv=2',
grey_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/4a8546ba8863c1b5ab75deec11ff00a8.png?cv=2',
grizzled_silth_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/94b6bcfaa2200a37d7ebf1e991c8e888.png?cv=2',
haunted_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/c3ed88f9b4529a081a5843cacc320582.png?cv=2',
high_charge_egg_convertible_2014: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ac76cda184767545237124b93a7b65a9.png?cv=2',
high_charge_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/7f2c7d53bf0aa5535a2fc581dce9507c.png?cv=2',
huntington_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/9f5dd6802fedb166c0c53d2df8047d29.png?cv=2',
hydra_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/a58d37d7d8e30b2e6fa8257e148e90a4.png?cv=2',
iceberg_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/055da6410fc56ecbf231f4d640210344.png?cv=2',
icewing_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d6b33eee7817327584abd12d48b03de6.png?cv=2',
icewing_generals_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/7d821c743230eba77922c1e7781c1f32.png?cv=2',
jod_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/a8df917df6cd125b25f2b28acfb03b5f.png?cv=2',
kalor_ignis_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/495802cedc9651b26fc2b7d220aa07a2.png?cv=2',
lich_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/db7a3090546cf227fd74fb1e0a090923.png?cv=2',
living_garden_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/7475dab32e3dc994c847bd84bbcc9f9a.png?cv=2',
living_salt_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/803c34c5907dffe7e59866d4236d957b.png?cv=2',
loot_cache_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/4ef0d0c6b7728fa4b4f7490168d268a2.png?cv=2',
lucky_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/c0e7ed8da27272d0beaccd1cbde51a96.png?cv=2',
m400_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/b2eb034c98964eab81ff7c4a235fc644.png?cv=2',
mage_weaver_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/89ed7a2cda758c220d99be4028e077ae.png?cv=2',
magic_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3b466a1e29db3103bb54e441620af52f.png?cv=2',
magic_floor_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/059cfea095e4c1dec37951d1f7d66b53.png?cv=2',
magical_eggsweeper_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3ccd4fd671eb4f53c2540df6d0c4cc56.png?cv=2',
magmatic_golem_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/5fac1395e51350c27197800e9a5ee58b.png?cv=2',
market_mogul_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/95b191428afa73aad55f64e3dd4abcce.png?cv=2',
marshmallow_monterey_cheese: 'https://www.mousehuntgame.com/images/items/bait/transparent_thumb/615d47b424c7babe771305088cbf1b1d.png?cv=2',
master_lord_eggsweeper_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/9d59aaf113696227b9981dfef7cc66f2.png?cv=2',
master_of_the_dojo_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/a0b5e37ddf417aead3c812f1cc3167c3.png?cv=2',
medium_charge_egg_convertible_2014: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/00fdd4d23051b82eb79e373389a71455.png?cv=2',
medium_charge_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ec013ca6b2b59f956941193886b49d35.png?cv=2',
melee_floor_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3cf99291a4804907802268d7114bd695.png?cv=2',
mighty_mole_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/44b66f84164b2c173f389c79e49f302d.png?cv=2',
monster_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2398fafeb5c068797c04decb904763e9.png?cv=2',
monster_of_the_meteor_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/075a931836ee7b1ca6fcdeed5422e671.png?cv=2',
mouse_scale_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/bd0155a3002c7c3354d61225fb7c511b.png?cv=2',
muridae_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ba0b914501da1f7ce769f40b8412256b.png?cv=2',
mutant_mongrel_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/f28138b52663c514a2cb5bdd83af1b19.png?cv=2',
mutated_behemoth_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d4abd5d322641153812defcfe2646926.png?cv=2',
mystic_king_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/48a7dabd0ecbdbb5380703a304a0a603.png?cv=2',
naturalist_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/431c863ce5f8c05ee365025cf66e7133.png?cv=2',
nerg_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/04577ef760297f27bf907c29dc533f58.png?cv=2',
nibbler_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/8705fa6fe03ea75513589c166bfa01da.png?cv=2',
night_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/5cdf051e566593d6ac873281428e4543.png?cv=2',
nightshade_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d4e71a92a95c59f632752483726f81fe.png?cv=2',
noble_floor_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d22d9a630368405e6b61820cbe52500a.png?cv=2',
novice_journeyman_eggsweeper_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/b2a26bf6598102e48ca4a7a519f2c4ff.png?cv=2',
null_rift_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3ce2ac8b3f79007a0ff8ed5ac067be68.png?cv=2',
over_9000_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/952973fbc52bae6606e688297c05095e.png?cv=2',
overflowing_pump_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/989016f54b0bea191ab1c913c9fc2d2f.png?cv=2',
oxygen_baron_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ab782b48ba5b40d67fc1b469a252b644.png?cv=2',
peggy_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2b623c5ab508f5c3a2ac2305d1975ac1.png?cv=2',
pirate_crew_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/7df121b6b4cecd8fdd49f549dddd6332.png?cv=2',
pirate_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/f090f1d15c31099933811f9e62e9967b.png?cv=2',
pressure_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/57cbbbbf3aad8b4f6c23154fcc52e3d3.png?cv=2',
puppet_floor_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/fdc64b997a42c129f5477beb1f793e70.png?cv=2',
pygmy_swarm_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/large/38a70113bd6c96fa3214026165542cc9.png?cv=2',
queso_nachore_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/08604f17934b7f86ca1d6f412794bf45.png?cv=2',
queso_pump_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d6740c2a9db6dee8c93e20fe3ad33763.png?cv=2',
queso_spice_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/0aa0f0a7a93992365c775a2cbe273d09.png?cv=2',
queso_wild_tonic_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/93e5c47e860fa6d8c2d8d6e345bc3914.png?cv=2',
quesodillo_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/82215e7848afc469861437a2d56d9820.png?cv=2',
rain_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2ad172b729b2f11046ad1c542387e538.png?cv=2',
real_lich_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/90e6af59caf922ecfd8e282b379409cf.png?cv=2',
relic_hunter_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/8b32cd31062c9df72c3d330432443adb.png?cv=2',
richest_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/5389b34153666f1f86170c0324d77064.png?cv=2',
rift_dojo_master_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d20df2a1625ab299defdd3c3eedfa607.png?cv=2',
rift_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/c171b1245e82f75ffa822b9ae8aa6837.png?cv=2',
rift_fang_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d34adf8f6efa51fe91216aef996e68dd.png?cv=2',
rift_mist_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/fc4098a34d1a3c5329c83276b0c40141.png?cv=2',
rift_venom_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/27169b939b7ecf37de6b1a2a1b9e18f9.png?cv=2',
riptide_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/0aa9ac23fc62404b4b7fcdbe77b4ccb8.png?cv=2',
rrs_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/642f3f8eae4c796deeab07c25a323502.png?cv=2',
runny_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/0e1357f59c7711724670faf71d51a903.png?cv=2',
salty_sea_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2591bb4bfe466739707726e6cafdd0ee.png?cv=2',
sand_dollar_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/c5d0aa811e77fedac381f722daa75d9e.png?cv=2',
sarcophamouse_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/7b915f3c621d86a91c91c1f692f6a745.png?cv=2',
scalloped_pink_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/06d89673a1fa0be3714292c4bc10468e.png?cv=2',
scavenger_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/247b1c6dd83b65678d1f0f984c2b61ca.png?cv=2',
seasonal_garden_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/a7913b46b8afdf35bdb018fe63163b21.png?cv=2',
sharpshooter_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2be168253e4fbedeb667e1007bd5e24b.png?cv=2',
shattered_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d9a6e0de2d1ceba8d3b1a58118d442c9.png?cv=2',
shelder_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/239a2342cad8ba4376b1eff11a0c0cbf.png?cv=2',
silth_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/1dbcdb3745492e77bc4398f01a7953ba.png?cv=2',
sky_conqueror_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/e3f75990f6c0408ddb168c4f1dac0447.png?cv=2',
sky_explorer_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/faf6aa947821296fd6dfe2caa662249a.png?cv=2',
sky_gem_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ccc46aaabcce629281d996a6f180e375.png?cv=2',
sky_ore_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/59b0b060631cfaf2fd119bd13779bcd4.png?cv=2',
sky_pirate_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/a17000e6e5bd7a8eb06403f2c3a3c60a.png?cv=2',
sky_sprocket_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/23fc2b6df0657a89567376a5375a1003.png?cv=2',
skysoft_silk_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/39a7ca4bd5cf71c4012bb243d8faa879.png?cv=2',
slushy_shoreline_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/676b0433964bb62cd53e0a85ced09d04.png?cv=2',
spud_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2fe307ede5656791fe058422fc63b519.png?cv=2',
stealthy_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ed10770a0fc1b81d0b7e20705f4c656b.png?cv=2',
storm_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/7a5c1b0b9da4cb032ff3e5c9f42e47a0.png?cv=2',
stripy_red_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3b2e468000680e03221f87c9957a944e.png?cv=2',
sunken_treasure_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/e77152a0ed2e7c1c4ce4170a9c340fc2.png?cv=2',
teamwork_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/6202f2c8ed8f489f295814d2bd2389e3.png?cv=2',
technic_king_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/158f10d9b412a7901c2dfd920ff26a7d.png?cv=2',
thief_floor_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/99b3413ecbb85e8c3af941d7099036ec.png?cv=2',
thistle_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/f7cc792a40e59f87b640813ef5513a62.png?cv=2',
thunderlord_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/24a61eb6f8d6c259d434a1d181f9ea31.png?cv=2',
tier_five_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/34dfef984983dae893ea2439c29fcb12.png?cv=2',
tier_four_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/fc1766ac339518093634a219a1d558ba.png?cv=2',
tiny_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/540294d277a77bc88aae5e5912369e7b.png?cv=2',
tower_elixir_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/92cc3d9700d8ba23293c4b61779f0897.png?cv=2',
tower_secret_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/33a702c95008850ee1cd002e257acf00.png?cv=2',
tower_sigil_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/b3860346167e182218be1e0b5dd9ae87.png?cv=2',
tower_siphon_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3ce06edb473184458a5e9c4e9fd2aefb.png?cv=2',
tower_umbra_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/bea6c2e165d63a088728e03e99028d5f.png?cv=2',
toxic_spill_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3a962c9fe36be8fda59d3de3b9cfac28.png?cv=2',
treasure_clue_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d66660398e40110a9d60c795f5d96f56.png?cv=2',
tritus_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2960db0a1eec4e69a152ae706d53d46f.png?cv=2',
twisted_lilly_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/a04056b7b88fd8c783c1e52dcaa14576.png?cv=2',
underwater_predator_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/39282b426fa5ea808f7b06355e914617.png?cv=2',
unstable_zokor_crystal_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/e8c5ed6c69e866c0a2b2d63013a7ad55.png?cv=2',
valour_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/afaf4d5d9954adcd03aaa3cb3d4726f0.png?cv=2',
wanted_poster_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/8b9d1478f16b2192814aacc80467ef00.png?cv=2',
warden_of_fog_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/bd9e56045d8459f38cff3e7db8892c63.png?cv=2',
warden_of_frost_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/d0ccb0397b6ded6ee63667a4179dc8e1.png?cv=2',
warden_of_rain_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/84433c71a0c9234ba5be2302f5111681.png?cv=2',
warden_of_wind_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/1de90054e0e0be3432000b51c316a90b.png?cv=2',
warmonger_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/9ab072dbd878982db9adab0a85d50b8f.png?cv=2',
warpath_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/5171ee5005a91f301baedb7ab7647f1c.png?cv=2',
wavy_purple_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/7b4bdafe3e690212b1407ae0363c6a63.png?cv=2',
whisker_woods_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/f7de3d418c45cb7fc1a612ad57a73c77.png?cv=2',
white_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/443f5c07485f5c0b75d85b74da57489e.png?cv=2',
wind_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/91e6d807162fa8056a919fda6a2566fd.png?cv=2',
workshop_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/1059cbc24317dd26a669325d952ec3e1.png?cv=2',
zokor_fealty_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ec1495d1bb3dec04644ac55f9f1aadb6.png?cv=2',
zokor_scholar_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/ad3d56dfb6b788dcdc8b0849f779bf47.png?cv=2',
zokor_tech_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/f8c72f3d4bfd3848e2812abc4342a05b.png?cv=2',
zokor_treasury_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/47ee91aa08ad6592e89c95fc6044c7de.png?cv=2',
zurreal_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/3896a1b68260eb95119fc54c35e7e95e.png?cv=2',
zzt_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/transparent_thumb/2337b5b8e14a4ebf668139a750770f10.png?cv=2',
agriculture_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/large/810d262bc2fe10a3c99b59993e8dd737.png?cv=2',
archduke_eggsweeper_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/large/5ac4d6da9f8e28d01adaccec620cb1d2.png?cv=2',
architeuthulhu_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/large/ef6336b16c27cc3eb83d6babb62c54b4.png?cv=2',
chummy_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/large/22022f49a2971100620162510f45a493.png?cv=2',
dusted_archduke_eggsweeper_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/large/7d1b3cf75058c66f8a18ad40ed4bafae.png?cv=2',
monstrous_midge_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/large/db525f45235eb31938088e276beed622.png?cv=2',
mythweaver_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/large/0a57f3c7f8e7f3b031b740280e54ab61.png?cv=2',
wordy_egg_convertible: 'https://www.mousehuntgame.com/images/items/convertibles/large/c5bc3c1bd62a3c7e9a8c3013b80bfa18.png?cv=2',
// Removed backgrounds
'2011_spring_hunt_egg_6': 'https://i.mouse.rip/2011-spring-hunt.png',
black_widow_egg_convertible: 'https://i.mouse.rip/egg-black-widow.png',
caring_egg_convertible: 'https://i.mouse.rip/caring-egg.png',
friendly_egg_convertible: 'https://i.mouse.rip/friendly-egg.png',
ful_mina_egg_convertible: 'https://i.mouse.rip/ful-mina-egg.png',
realm_ripper_egg_convertible: 'https://i.mouse.rip/realm-ripper-egg.png',
sharing_egg_convertible: 'https://i.mouse.rip/sharing-egg.png',
};
// Add the styles
addStyles(`#overlayPopup.mh-dialog-book-wrapper .jsDialog.top,
#overlayPopup.mh-dialog-book-wrapper .jsDialog.bottom,
#overlayPopup.mh-dialog-book-wrapper .jsDialogContainer .suffix {
display: none;
}
#overlayPopup.mh-dialog-book-wrapper .jsDialogContainer .prefix,
#overlayPopup.mh-dialog-book-wrapper .jsDialogContainer .content,
#overlayPopup.mh-dialog-book-wrapper .jsDialog.background {
padding: 0;
margin: 0;
background: none;
}
#overlayPopup.mh-dialog-book-wrapper #jsDialogClose:hover, #overlayPopup.mh-dialog-book-wrapper #jsDialogClose:focus {
background-position-y: 50%;
}
#overlayPopup.mh-dialog-book-wrapper #jsDialogClose:active {
background-position-y: 100%;
}
#overlayPopup.mh-dialog-book-wrapper {
position: relative;
width: 744px;
padding: 0;
margin: 0 auto;
margin-top: -150px;
}
#overlayPopup.mh-dialog-book-wrapper .jsDialog.top,
#overlayPopup.mh-dialog-book-wrapper .jsDialog.bottom {
position: absolute;
top: 105px;
left: 1px;
display: block;
width: 125px;
height: 105px;
content: '';
background: url(https://www.mousehuntgame.com/images/ui/hud/folklore_forest_region/dialog/top_left.png?asset_cache_version=2);
}
#overlayPopup.mh-dialog-book-wrapper .jsDialog.bottom::after {
position: absolute;
top: 1px;
right: -621px;
z-index: 1;
width: 138px;
height: 106px;
content: '';
background: url(https://www.mousehuntgame.com/images/ui/hud/folklore_forest_region/dialog/top_right.png?asset_cache_version=2);
}
#overlayPopup.mh-dialog-book-wrapper #jsDialogClose {
top: 118px;
right: 16px;
z-index: 1;
width: 32px;
height: 32px;
background-image: url(https://www.mousehuntgame.com/images/ui/hud/folklore_forest_region/dialog/close_button.png?asset_cache_version=2) !important;
background-position-y: 100%;
}
#overlayPopup.mh-dialog-book-wrapper .jsDialog.bottom::before {
position: absolute;
bottom: -566px;
left: -8px;
width: 55px;
height: 54px;
content: '';
background: url(https://www.mousehuntgame.com/images/ui/hud/folklore_forest_region/dialog/bottom_left.png?asset_cache_version=2);
}
.custom-submenu-item .icon {
top: 3px;
left: 3px;
width: 23px;
height: 23px;
}
.book-wrapper {
width: 744px;
height: 822px;
background: url(https://i.mouse.rip/book-wrapper.png) 50% 0 no-repeat;
}
.right-header {
box-sizing: border-box;
width: 326px;
height: 75px;
padding: 10px 20px 0 14px;
padding-bottom: 7px;
margin-left: 0;
text-align: center;
background: url(https://i.mouse.rip/book-header.png) 0 0 no-repeat;
box-shadow: 0 5px 4px -5px #d2a155;
}
.right-header-text {
max-width: 180px;
margin: 0 auto;
font-size: 12px;
font-weight: 700;
}
.right-subheader {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
margin-top: 0.75em;
font-size: 10px;
font-style: italic;
}
.right-content {
height: 429px;
overflow-x: hidden;
overflow-y: auto;
padding-top: 10px;
}
.right-thumb {
width: 80px;
height: 80px;
}
.right-meta {
position: relative;
display: flex;
align-items: center;
justify-content: space-around;
padding: 15px;
}
.egg-wrapper {
display: flex;
align-items: center;
justify-content: space-evenly;
padding: 5px;
}
.egg-wrapper-image {
flex: 1;
}
.eggs-wrapper .egg-wrapper-unfound img {
mix-blend-mode: luminosity;
opacity: .5;
}
.egg-wrapper-image img {
width: 40px;
height: 40px;
margin-right: 5px;
vertical-align: middle;
}
.egg-name {
color: #8c5909;
}
.egg-wrapper:hover .find-egg,
.egg-wrapper:focus .find-egg {
display: inline-block;
padding: 5px 0;
color: #916728;
text-decoration: none;
background: none;
}
.egg-wrapper:hover,
.egg-wrapper:focus {
cursor: pointer;
background-color: #f7e3a9;
border-radius: 10px;
box-shadow: inset 1px 1px 3px 1px #f7e3a9;
}
.find-egg:hover, .find-egg:focus {
text-decoration: none;
background-color: #d1fdff;
background-image: linear-gradient(to bottom, #d1fdff, #658c99);
}
.book-right-side,
.book-welcome-categories {
position: absolute;
top: 155px;
left: 385px;
width: 335px;
}
.eggs-wrapper,
.categories-wrapper {
position: absolute;
top: 200px;
left: 40px;
width: 315px;
height: 480px;
overflow: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: transparent;
}
.categories-wrapper {
top: 80px;
left: 5px;
width: 325px;
height: 429px;
padding-top: 5px;
}
.eggs-wrapper,
.right-content {
scrollbar-color: #e1c07f transparent;
}
.eggs-wrapper::-webkit-scrollbar,
.categories-wrapper::-webkit-scrollbar,
.right-content::-webkit-scrollbar {
width: 10px;
}
.eggs-wrapper::-webkit-scrollbar-track,
.categories-wrapper::-webkit-scrollbar-track,
.right-content::-webkit-scrollbar-track {
background: transparent;
}
.eggs-wrapper::-webkit-scrollbar-thumb,
.categories-wrapper::-webkit-scrollbar-thumb,
.right-content::-webkit-scrollbar-thumb {
background-color: #e1c07f;
border: 3px solid transparent;
border-radius: 5px;
}
.right-description {
display: grid;
grid-template-columns: 1fr 4fr;
grid-gap: 1.25em;
align-items: center;
max-width: 300px;
-ms-grid-columns: 1fr 1.25em 4fr;
}
.book-right-side h2,
.right-name h2 {
font-size: 1.25em;
}
.egg-wrapper-found {
position: relative;
color: #2c672c;
}
.egg-wrapper-found::after {
position: absolute;
bottom: 5px;
left: 0;
width: 25px;
height: 25px;
content: '';
background-image: url(https://www.mousehuntgame.com/images/ui/hud/meadow_checkmark.png?asset_cache_version=2);
filter: drop-shadow(5px -1px 5px #19e718);
background-repeat: no-repeat;
background-size: contain;
}
.right-short-text p {
font-size: 11px;
font-style: italic;
line-height: 15px;
}
.right-text {
margin: 2em;
}
.halloweenBoilingCauldronRecipeView-recipe-ingredientContainer td:first-child,
.halloweenBoilingCauldronRecipeView-recipe-ingredientContainer td:last-child {
padding-left: 5px;
}
.aqure-list-wrapper {
position: relative;
padding: 10px;
margin-top: 20px;
background: #f7e3a9;
border-radius: 5px;
box-shadow: 0 0 5px #e8d7a4 inset;
}
.aquire-list-header {
font-size: 12px;
font-style: italic;
color: #916728;
}
.aquire-text {
padding: 10px;
font-size: 13px;
line-height: 21px;
}
.left-header {
position: absolute;
top: 155px;
left: 40px;
display: flex;
align-items: center;
justify-content: space-between;
width: 305px;
padding-bottom: 1em;
border: none;
box-shadow: 0 5px 4px -5px #d2a155;
}
.egg-search-input {
padding: 5px;
font-size: 12px;
color: #674e29;
background-color: #f2dca4;
border: none;
border-radius: 6px;
box-shadow: inset 1px 1px 1px 0 #daa756;
}
.egg-search-input::placeholder {
color: #b58e51 !important;
}
.egg-tool-image {
width: 30px;
height: 30px;
filter: opacity(0.8);
mix-blend-mode: luminosity;
}
.egg-tool-image:hover,
.egg-tool-image:focus {
filter: opacity(1);
mix-blend-mode: multiply;
}
.category-eggs {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
img.category-egg-image {
width: 50px;
height: 50px;
}
.category-title {
font-size: 1.75em;
color: #996f2e;
text-align: center;
}
.category-subtitle {
padding: 1em;
font-size: 10px;
font-style: italic;
line-height: 15px;
text-align: center;
}
.category-wrapper {
margin-bottom: 2em;
}
.book-welcome-categories {
height: 526px;
overflow: hidden;
}
.egg-close {
position: absolute;
bottom: 50px;
left: 288px;
width: 168px;
height: 63px;
font-size: 17px;
font-weight: 700;
line-height: 51px;
color: #d7eecb;
text-align: center;
text-shadow: 1px 1px 2px #1a2502;
background-image: url(https://www.mousehuntgame.com/images/ui/hud/folklore_forest_region/dialog/continue_button_frame.png?asset_cache_version=2);
background-position: 0 100%;
}
.egg-close:hover,
.egg-close:focus {
text-decoration: none;
}
.egg-filter,
.egg-back-button {
color: #b0833d;
}
.egg-back-button {
position: absolute;
top: 136px;
right: 275px;
z-index: 1;
font-size: 13px;
}
.egg-filter:hover,
.egg-back-button:hover,
.egg-back-button:focus,
.egg-back-button:active {
color: #7b581f;
text-decoration: none;
}
.book-welcome-categories-hidden,
.egg-back-button-hidden,
.egg-wrapper-hidden,
.egg-wrapper-filter-hidden,
.find-egg {
display: none;
}
.category-egg-wrapper.egg-wrapper-unfound {
mix-blend-mode: luminosity;
opacity: .2;
}
.category-egg-wrapper.egg-wrapper-unfound:hover, .category-egg-wrapper.egg-wrapper-unfound:focus {
mix-blend-mode: initial;
opacity: 1;
}
@media screen and (prefers-reduced-motion: reduce) {
.category-egg-wrapper {
transition: none;
}
}
.category-egg-wrapper {
transition: .125s;
}
.category-egg-wrapper:hover, .category-egg-wrapper:focus {
transform: scale(1.1);
}
.collected-text {
margin-top: 1.75em;
font-size: 10px;
color: #957f58;
text-align: center;
opacity: .75;
}
.collected-text a {
color: #481313;
}
.no-eggs-found {
display: inline-block;
width: 100%;
margin-top: 2em;
color: #cdab6f;
text-align: center;
}
.no-eggs-found-hidden {
display: none;
}
@media screen and (prefers-reduced-motion: reduce) {
#mh-custom-icon-egg {
position: absolute;
top: 5px;
left: -27px;
z-index: 1;
filter: drop-shadow(1px 1px 1px #debb6c);
transition: none;
}
}
#mh-custom-icon-egg {
position: absolute;
top: 5px;
left: -27px;
z-index: 1;
filter: drop-shadow(1px 1px 1px #debb6c);
transition: .125s;
}
#mh-custom-icon-egg:hover, #mh-custom-icon-egg:focus {
filter: drop-shadow(1px 1px 6px #debb6c);
transform: scale(1.2);
}
#mh-custom-icon-egg img {