-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquickstock-classification.js
More file actions
1276 lines (1267 loc) · 29.5 KB
/
quickstock-classification.js
File metadata and controls
1276 lines (1267 loc) · 29.5 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
// ==UserScript==
// @name Quickstock classification
// @namespace http://tampermonkey.net/
// @version 2023-12-29
// @description try to take over the world!
// @author You
// @match https://www.neopets.com/quickstock.phtml*
// @icon https://www.google.com/s2/favicons?sz=64&domain=neopets.com
// @grant none
// ==/UserScript==
const normalPool = [
"Blandfish",
"Box of Wheat Flakes",
"Brown Sauce",
"Cheops Plant",
"Dried Apricots",
"Dried Prunes",
"Landfish",
"Lesser Spotted Fish",
"Ptolymelon",
"Rotten Omelette",
"Scrawnyfish",
"Semolina",
"Snazzy Moon Comb",
"Stagnant Puddle of Water",
"Super Toy Sailboat",
"Tchea Fruit",
"Toy Sailboat",
"Volcanic Rock",
"Waterfish",
"Yellow Growth"
];
const alternatePool = [
"Acara Acrobat Plushie",
"Adventures In Space",
"Altador Rug",
"Altador Stained Glass Window",
"Amber Sword",
"Aplets",
"Apple Cherry Tarts",
"Apple Cinnamon Crepe",
"Apple and Cheese Sandwich",
"Aquatic Arrangement",
"Arkmite",
"Assorted Mini Biscuits",
"Avocado Baby Food",
"Baby Quiggle Plushie",
"Baby Scorchio Plushie",
"Bag of Decorative Seashells",
"Bagguss",
"Baked Asparagus Biscuit",
"Baked Cheddar Straws",
"Banjo",
"Basket of Vegetables",
"Beetroot and Cream Smores",
"Bite Size Celery",
"Biyako",
"Blue Ixi Plushie",
"Blue Meerca Gnome Plushie",
"Blue Ruki Plushie",
"Blue Scorchio Paddleball Game",
"Boots of Leaping",
"Bottle of Shenkuu Ink",
"Brain Muffin",
"Brightvale Berry Stained Glass Window",
"Brioche",
"Brown Rice",
"Bucket of Neopets",
"Buttered Toast",
"Camouflage Ruki Marionette",
"Caramel Creams",
"Castle Window",
"Wheel of Knowledge",
"Cello",
"Cheopple",
"Chia Clown Punching Bag",
"Chilli Stir Fry",
"Chocolate Covered Cherries",
"Chomato",
"Cinnamon Roll",
"Claw Necklace",
"Cobrall Root",
"Comfy Pumpkin Bean Bag",
"Corn Bread",
"Creamy Stick Biscuit",
"Croissant",
"Cyodrake Scratching Post",
"Cyodrakes Gaze Keychain",
"Darigan Aisha Crystal Ball",
"Darigan Faellie Action Figure",
"Darigan Muffin",
"Dark Island Palm Tree",
"Dartail",
"Desert Kabob",
"Dont Splat the Korbat!",
"Doughnut Holes",
"Dried Mango",
"Drillaroot",
"Drinking Lenny Toy",
"Drumsticks",
"Dual Tone Maractite Coin",
"Eau de Korbat",
"Endless Salad and Bread Sticks",
"Evil Hair Clip",
"Evil Muffin",
"Evil Snowball",
"Evil Twin Goatee",
"Exotic Fried Noodles",
"Exploding Snowball",
"Fauna Stamp",
"Finneus Stained Glass Window",
"Fire Muffin",
"Fizzy Neocola Bottles",
"French Toast Sticks",
"Fresh Bamboo Chair",
"Fried Chicken and Waffles",
"Fried Egg on Toast",
"Fruit and Vegetable Hand Roll",
"Fruity Pancakes",
"GX-4 Oscillabot",
"Ghostkerchief Banjo",
"Gilded War Hammer",
"Glowing Top",
"Gobi Fruit",
"Gold Trimmed Tunic",
"Golden Laurel Circlet",
"Golden Muffin",
"Green Cyodrake Plushie",
"Green Kiko Jigsaw Puzzle",
"Green Mynci Sand Bottle",
"Gummy Pirate Candies",
"Harris Lamp",
"Healthy Veggie Deluxe Sandwich",
"Iced Soy Chai Latte",
"Icy Snowball",
"Inflatable Bouncy Pirate Ship",
"Island Grarrl Plushie",
"Island Pteri Plushie",
"Island Usul Bubble Bath",
"Jug of Fresh Phearade",
"Juicy Elixir",
"Karate for Beginners",
"Kora",
"Kougra Tape Dispenser",
"Kreludan Defender Plushie",
"Legends of Maraqua",
"Light Speed Made Easy",
"Linae Stamp",
"Lost Desert Architecture",
"Lucky Pandaphant Doll",
"Lurman",
"Main Codestone Plushie",
"Manacle Mace",
"Maractite Mynci Sand Bottle",
"Maraquan Kacheek Plushie",
"Marzipan Sugared Slorg",
"Milk Chocolate Rose",
"Money Tree Window",
"Moon and Star Stickies",
"Mutant Petpet Foreground",
"Native Mask",
"Negg Latte",
"Negg Noodles",
"Neocola Book",
"Niptor Plushie",
"Noak",
"Nupie",
"Organic Bran Carrot Muffin",
"Pale Elixir",
"Pandaphant Puppet",
"Paper Dagger",
"Pawkeet Pencil Sharpener",
"Peach Snowball",
"Peophin Squirt Gun",
"Pimplepepper",
"Pirate Aisha Plushie",
"Pirate Attack Stamp",
"Pirate Flotsam Plushie",
"Pirate Hook Candy Cane",
"Pirate Ogrin Plushie",
"Pirate Potato Crisps",
"Pirate Small Talk",
"Pirate Tonu Plushie",
"Pirate Warning Sign",
"Pirate Xweetok Plushie",
"Pottery Shard Dagger",
"Pretty Bouquet",
"Princess Amira Balloon",
"Pull Along Kougra",
"Purple Hasee Plushie",
"Purple Pull Along Tuskaninny",
"Pygui Hand Puppet",
"Pygui Nesting Dolls",
"Quintilc Throwing Star",
"Rainbow Grarrl Plushie",
"Red Toadstool",
"Relaxing Shenkuu Rock Garden",
"Rhuby Fruit",
"Ridiculously Heavy Battle Hammer",
"Ringed Scroll",
"Robot Muffin",
"Rocket Fizzy Drink",
"Rocky Ocean Background",
"Rolled Up Treasure Map",
"Rotten Beetroot",
"Rotten Egg Salad",
"Rotten Negg and Onion Quesadilla",
"Rotten Tomato Salad",
"Alien Aisha Vending Machine",
"Royal Girl Zafara Plushie",
"Ruki Balloon",
"Scary Ink Frame",
"Scorched Cheopple",
"Scorched Gobi Fruit",
"Scorched Rhuby",
"Scorched Suti Fruit",
"Scrambled Egg on Toast",
"Scroll of the Sea",
"Shenkuu Postcard",
"Shenkuu Sushi Roll Magnet",
"Silly Clown Usuki",
"Skeith Inspired Treasure Maps",
"Slime Covered Window",
"Smelly Dung Muffin",
"Snot Snake",
"Snow Footbag",
"Soothing Stones",
"Space Faerie Cupcake",
"Splime",
"Spooky Skull Perfume",
"Squared Maractite Coin",
"Starry Biscuit Jar",
"Starry Crunch",
"Steel Snowball",
"Stripy Spinning Top",
"Strong Forever Glue",
"Supernova",
"Suti Fruit",
"Tablet of Water Runes",
"Tai-Kai Codestone Plushie",
"The Secret of Treasure Island",
"Thermal Explosive Device",
"Tiara of the Deep",
"Tiki Bookmark",
"Tiki Brochure",
"Tiki Bucket of Sand",
"Tiki Kite",
"Tiny Edible Palm Trees",
"Toad in a Hole",
"Toy Pirate Hat",
"Toy Pirate Sword",
"Toy Scorchio Biscuit Thief",
"Treasure Map Negg",
"Tuskaninny Treasure",
"Tyragh the Tyrannian Buzz",
"Ubikiberry Elixir",
"Ultra Bubble Beam",
"Ultranova",
"Ummagine",
"Undead Turnip",
"Vanilla Gnorbu Biscuit",
"Vegetarian Meat Pie",
"Very Rotten Tomato",
"Vial of Pure Water",
"Virtupets Energy Sabre",
"Water Faerie Halberd",
"Water Faerie Water Blaster",
"Weak Bottled Air Faerie",
"Weak Bottled Earth Faerie",
"Weak Bottled Fire Faerie",
"Weak Bottled Water Faerie",
"White Squid Root",
"Wooden Korbat Bat and Ball Game",
"Wooden Paddleball Game",
"Wooden Pirate Ship",
"Wrapped Strawberry Candy",
"Yellow Snowball",
"Yoakie",
"Yurble Puzzle",
"Zombie Bori Plushie"
];
const oneToFive = [
"Altador Archway Background",
"Altadorian Practice Helmet",
"Ancient Shenkuu Cannon",
"Balloons",
"Balthazar Ears",
"Banjo",
"Basic Rubber Axe",
"Basket of Vegetables",
"Bit of Barbed Wire",
"Blue Flotsam Plushie",
"BOO Window",
"Broken Fishing Pole",
"Broken Heart Keyring",
"Broken Toy Sailboat",
"Bucket of Sludge",
"Candy Faerie Jetsam Plushie",
"Carved Seashell",
"Cave Foreground",
"Cello",
"Cheap Water Ring",
"Cheery Plant",
"Cinder Block Sea Fungus",
"Clay Shield",
"Cloud Jetsam Keyring",
"Cobrall Charmer Clarinet",
"Coltzans Gem",
"Comfortable Muumuu",
"Complimentary Virtupets Toaster",
"Courgette Building Logs",
"Cubical Sea Fungus",
"Darigan Seaweed",
"Deadly Attack Spork",
"Deserted Desert Scroll",
"Deserted Tomb Puzzle",
"Discarded Camouflage Yurble Plushie",
"Discarded Fire Mynci Plushie",
"Discarded Maractite Ogrin Plushie",
"Discarded Stealthy Vandagyre Plushie",
"Diseased Mechafish",
"Dull Grey Pearl",
"Dung Snuffly",
"Eau De Skunk",
"Finneus Stained Glass Window",
"Fir Petpet Walkie Talkie Set",
"Flutter",
"Forgotten Shore Map Piece",
"Frozen Mechafish",
"Ghost Ponka",
"Giant Bath Plug",
"Giant Brown Kelp",
"Giant Green Kelp",
"Giant Red Kelp",
"Gilded War Hammer",
"Golden Mechafish",
"Gorunda the Wise",
"Green Clam Shell",
"Grey Sea Fern",
"Hair Chopsticks",
"Half Coconut Shell",
"Halloween Lizark Plushie",
"Handful of Asparagus",
"Headless Von Roo Plushie",
"Hissi Stained Glass Window",
"Krawk Pirate Ship",
"Legends of Maraqua",
"Light Speed Made Easy",
"Lizark Plushie",
"Maraquan Bed Time Stories",
"Maraquan Grackle Bug",
"Metallic Mote",
"Mop Wig",
"Mossy Rock",
"MSPP Army Foreground",
"Muddy Bone",
"Mutant Chuchuana",
"Mutant Petpet Foreground",
"Mystery Island Drum",
"Neocola Book",
"Niptor Plushie",
"Non-Sticky Sticky Hand",
"Nova",
"Ocean Crossing Flotsam Board Game",
"Old Rotten Left Boot",
"Old Rotten Left Sandal",
"Old Rotten Left Shoe",
"Old Rotten Right Boot",
"Old Rotten Right Sandal",
"Old Rotten Right Shoe",
"Omelette Flying Disc",
"Omelette Shield",
"Organ",
"Pant Devil Balloon",
"Petrified Bone",
"Pile of Dung",
"Pirate Acara Plushie",
"Pirate Aisha Plushie",
"Pirate Alkenore",
"Pirate Attack Stamp",
"Pirate Baby Fireball",
"Pirate Bori Plushie",
"Pirate Charnie",
"Pirate Dua",
"Pirate Elephante Plushie",
"Pirate Flishy",
"Pirate Hissi Plushie",
"Pirate Mynci Plushie",
"Pirate Tonu Plushie",
"Pirate Usuki Play Set",
"Poison Snowball",
"Poisonous Snowflake",
"Potato Yo-Yo",
"Prismatic Sea Fern",
"Proto-force 5000 Helmet",
"Rainbow Dung",
"Red Grundo Keyring",
"Red Kazoo",
"Red Koi Keyring",
"Red Koi Plushie",
"Red Korbat Keyring",
"Reject Curly Shaped Sand",
"Reject Flower Shaped Sand",
"Reject Ornate Rainbow Sand",
"Reject Star Shaped Sand",
"Robot Rock",
"Rock Petpet Plushie",
"Rockfish",
"Rotten Beetroot",
"Rotten Berry",
"Rotten Radish",
"Rotting Driftwood",
"Rusty Old Can",
"Sandy Body Wash",
"Scenic Tyrannian Background",
"Serf Lens",
"Shenkuu Firecrackers",
"Shenkuu Sushi Roll Magnet",
"Shimmery Seagrass",
"Shiny Obsidian",
"Small Unidentified Skull",
"Snow Wars Background",
"Snowball Pencil Sharpener",
"Soggy Old Box",
"Soothing Stones",
"Speckled Faerie Chomby Plushie",
"Sponge Grundo Sponge",
"Spongy Algae",
"Spooky Mechafish",
"Spy Glasses",
"Starry Biscuit Jar",
"Starry Box Kite",
"Sticky Snowball",
"Stone Shield",
"Supernova",
"Sutekh Plushie",
"Tablet of Water Runes",
"Tencals Balloon",
"Tomato Bomb",
"Tombola Keyring",
"Tombola Pencil Sharpener",
"Tombola T-shirt",
"Tombola Visor",
"Turbo Scissors",
"Tyrannian Mechafish",
"Tyrannian Usuki",
"UFFH",
"Ultra Fashionable Potato Sack",
"Unlabelled Tin Can",
"Unnerving Hat",
"Void Plant",
"Water Faerie Halberd",
"Water Faerie Usul Plushie",
"Water Mote",
"Wet Snowball",
"Wilderness Hairbrush",
"Wind Up Dr. Sloth Toy",
"Wind Up Red Draik Toy",
"Wooden Blocking Shield",
"Yellow Kougra Plushie",
"Yellow Sticky Hand",
"Yellow Valentines Mobile",
"Zen Bed",
"Adventures In Space",
"Altadorian Initiate Sword",
"Aquatic Arrangement",
"Astral Blade of The Space Station",
"Blue Negg Goo",
"Bottle of Blue Sand",
"Bottle of Orange Sand",
"Broken Spoon",
"Brown Snowball",
"Bubble Mote",
"Camelior",
"Castle Window",
"Checkered Faerie Blumaroo Plushie",
"Cobrall In A Can",
"Coltzans Last Words",
"Crayon Crossbow",
"Cyodrakes Gaze Keychain",
"Discarded Cloud Krawk Plushie",
"Elephante Peanut Launcher",
"Evil Snowball",
"Evil Snowflake",
"Fake Neocola Token on a String",
"Fake Sloth Tattoo",
"Fiery Wooden Wings",
"Fire Mote",
"Flask of Liquid Light",
"Forgotten Shore Background",
"Glistening Mechafish",
"Glowing Meteor Rock",
"Glowing Sand",
"Glowing Snowflake",
"Hairy Snowball",
"I Club Sloth Grundo T-Shirt",
"Ice Faerie Chia Plushie",
"Inflatable Bouncy Pirate Ship",
"Invisible Sand",
"Juicy Elixir",
"Kora",
"Limited Edition Guitar",
"Lost Desert Architecture",
"Magic Crystalline Kelp",
"Magical Healing Potion",
"Marching Glockenspiel",
"MechaBerry Bomb",
"Meteor Bomb",
"Meteor Rock",
"Mimbi",
"Mouldy Pencil Case",
"Mouldy Petpet Bed",
"Mummy Intruder Window",
"Mundo",
"Native Mask",
"Noak",
"Ornate Rainbow Sand",
"Outdoor Pirate Flag",
"Pandaphant Puppet",
"Pant Devil Pinata",
"Pirate Hook Candy Cane",
"Plastic Ring of Sloth",
"Plushie Tanizard",
"Pottery Shard Dagger",
"Pull Along Rock",
"Purple Scallop Shell",
"Red Negg Goo",
"Red Toadstool",
"Rotten Artichoke",
"Rotten Negg Face Splat",
"Samuel No Eyes",
"Scroll of Supernova",
"Seasonal Cumulus Music Box",
"Snot Lotion",
"Snow Anubis",
"Snowager Pull Along",
"Snowglobe Pencil",
"Snowy Igloo Garage Sale Background",
"Space Faerie Pencil Case",
"Space Faerie Pull Along Toy",
"Space Fungus Spore",
"Space Goggle Helmet",
"Spooky Nimmo Stained Glass Window",
"Spooky Shutter",
"Spooky Tree Flute",
"Sticky Snowflake",
"Surzard",
"The Secret of Treasure Island",
"Tiki Tack Keyring",
"Torakor Action Figure",
"Ultra Bubble Beam",
"Virtupets Energy Sabre",
"Void Snowball",
"Warriors Round Shield",
"Water Faerie Water Blaster",
"Water Muffin",
"White Flosset Plushie",
"Yellow Lupe Plushie",
"Yellow Snowball",
"Yellow Snowflake",
"You Did It Card",
"Altador Yoyo",
"Ancient Scarab Scroll",
"Angry Pumpkin",
"Baby Lupe Plushie",
"Blue Moon Petpet Bed",
"Bottle of Green Sand",
"Bucket Of Mud",
"Butterscotch Disc",
"Camouflage Ruki Marionette",
"Chia Clown Ball",
"Chomby and the Fungus Balls Cap",
"Cucumber Eye Cream",
"Cybunny Ears with a Spring Bow",
"Dark Vine Potion",
"Diamond Snowball",
"Elephante Attack Peanut",
"Exploding Snowflake",
"Extra Evil Snowball",
"Failed Snowball",
"Fake Uni Hat",
"Forgotten Shore Map Piece",
"Forgotten Shore Map Piece",
"Forgotten Shore Map Piece",
"Fresh Bamboo Chair",
"Frozen Scarf",
"Glow-in-the-Dark Moon",
"Green Cybunny Plushie",
"Griefer",
"Handmade Christmas Card",
"Haunted Cookie Jar",
"Haunted Drums",
"Heavy Blocking Shield",
"Icy Eye Snowball",
"Jade Slingshot of the Ogrin",
"Kreludan Grundo Slippers",
"Linae Stamp",
"Maraquan Faerie Tales",
"Mega Force Ice Glove",
"Mini Apple Bobbing Game",
"Molasses Snowball",
"Neo Hits Volume One",
"Neopets Office Background",
"Nupie",
"Pale Elixir",
"Pawkeet Pinata",
"Peach Snowball",
"Perfectly Flat Rock Shield",
"Piece of Wool",
"Remote Control Virtupets Snowball",
"Rotten Carrot",
"Royal Girl Zafara Plushie",
"Sand Pit",
"Sand Snowball",
"Scariest Neopian",
"Skull Book",
"Skull Cookie",
"Smoke Mote",
"Snot Umbrella",
"Snowager Ruler Puzzle",
"Space Faerie Blocks",
"Space Fungus Action Figure",
"Spooky Looking Dark Potion",
"Starry Sea Fern",
"Stone Muffin",
"Strawberry Koi Pop",
"Stripy Spinning Top",
"Supersize Mega Ultra Plus",
"Tiki Brochure",
"Tortured Snowball",
"Trrygdorr",
"Twisted Golden Stave",
"Tyrannian Skeith Plushie",
"Ugly Snowball",
"Ultranova",
"Underwater Tour",
"Veiled Autumn Hat",
"Virtupets Station String Lights",
"Warriors Rectangular Shield",
"Washed Up Sandcastle Foreground",
"White Snowball Plushie",
"Wooden Korbat Bat and Ball Game",
"Yoakie",
"Abominable Snowball Light String",
"Abysmal Window",
"Basic Shield of Flight",
"Cheap Air Ring",
"Chomby and the Fungus Balls Jacket",
"Coconut Skull Scorchipepper Juice",
"Curly Green Sand",
"Darigan Aisha Crystal Ball",
"Darigan Muffin",
"Electric Christmas Tree Razor",
"Fire Dofrey",
"Forgotten Shore Map Piece",
"Frost Bite Egg",
"Frost Glove",
"Gelert Wand",
"Gikerot",
"Glowing Top",
"Grape Snowflake",
"Halloween Koi Plushie",
"Healing Potion III",
"Island Usul Bubble Bath",
"Jetsam Mini Fan",
"Jhudoras Snowball",
"Light Acara Hood",
"Lucky Chocolate Coin",
"Maraquan Shieldmaiden Plushie",
"Marzipan Sugared Slorg",
"Moon and Star Stickies",
"Moon Paving Stone",
"My First Dentures",
"N-4 Info Retrieval Bot",
"Necklace of the Deep",
"Neggitus Injection",
"Neopet-Eating Carp",
"Old Paper",
"On-Fire Marshmallow Stick Handheld",
"Pawkeet Pencil Sharpener",
"Peach Snowflake",
"Peanut Butter and Jam Shield",
"Pirate Accessory Set",
"Pirate Bomber Plushie",
"Pirate Small Talk",
"Plushie Clam",
"Plushie Fungus",
"Potted Tentacles",
"Pretty Bouquet",
"Rainbow Gun",
"Red Frost Cannon",
"Relaxing Shenkuu Rock Garden",
"Rustic Wooden Shield",
"Shell Hairbow",
"Shenkuu Lunar Festival Commemorative Guide",
"Shield of the North Wind",
"Speak Tyrannian",
"Splime",
"Spooky Green Candles",
"Steel Snowball",
"Surfboard Keyring",
"Tencals",
"Tiki Kite",
"Tyragh the Tyrannian Buzz",
"Walein",
"Waterlogged Book",
"Watery Hot Dog",
"Zombie Bori Plushie",
"Antigravity Tulip",
"Apple Bobbing Foreground",
"Applehead Bart Plushie",
"Battle Muffin",
"Bouncy Slorg Ball",
"Cave Rock",
"Crystal Ball Table",
"Faerie Cybunny Plushie",
"Forgotten Shore Map Piece",
"Ghost Goople",
"Golden Moon Comb",
"Green Sculpting Clay",
"GX-4 Oscillabot",
"Healing Potion IV",
"Heavy Round Shield",
"Hifflo Yoyo",
"Holiday Petpet Bed",
"I Love Captain Scarblade Keyring",
"Ice Blasted Hissi Plushie",
"Ice Dagger",
"Karate for Beginners",
"Lenny Crosswords",
"Lotus Leaves",
"Orn Codestone Plushie",
"Void Snowball",
"Electro Sword",
"Golden Sun Chalice",
"Twisted Dark Dagger",
"Voidberry Potion",
"Amulet of Darkness",
"Doctor Top",
"Weighted Blanket",
];
const fiveToTen = [
"Packet of Gravel",
"Purple Negg Goo",
"Reptilior Hair Dryer",
"Roburg 3T3",
"Scamander Shield",
"Scroll of the Sea",
"Shiny Apple",
"Smelly Dung Muffin",
"Space Faerie Hair Brush",
"Space Faerie Mirror",
"Space Faerie Sword",
"Spyder Wardrobe",
"Sticky Gormball",
"Tyrannian Rock Balloon",
"Upsidown Tree",
"Wet Snowflake",
"Wooden Practice Shield",
"Yellow Blumaroo Keyring",
"Zargrold the COOL Bobblehead",
"A History of the Lost Desert",
"Aisha Lawyer Plushie",
"Aplets",
"Baby Fireball in a Box",
"Blueberry Gummy Korbat Tail",
"Blueberry Snowflake",
"Chocolate Ice Cream Cream Puff",
"Chocolate Lupe Treat",
"Christmas Town Building Blocks",
"Cursed Wand of Shadow",
"Earrings of the Deep",
"Eau de Korbat",
"Exploding Snowball",
"Flower Necklace",
"Forgotten Shore Map Piece",
"Ghostkerscarf",
"Golden Muffin",
"Gooey Rotten Pumpkin",
"Illusens Potion",
"Island Pteri Plushie",
"Jetsam Ace Action Figure",
"Kazeriu",
"Large Metal Shield",
"Lucky Pandaphant Doll",
"Quintilc Throwing Star",
"Skull Candy",
"Sloth Gummies",
"Traditional Bone Throne",
"Tyrannian Acara Plushie",
"Wooden Warf Totem",
"Yellow Sculpting Clay",
"Yes Boy Ice-Cream Poster",
"Blue Fuzzle",
"Blue Kacheek Group Cap",
"Blue Ruki Plushie",
"Bottle of Black Sand",
"Camping Picnic Table Foreground",
"Capara Battlecard",
"Carnival of Terror Clown Sprinkler",
"Coconut Keyring",
"Dark Island Palm Tree",
"Enormous Fake Diamond",
"Exfoliating Sand Soap",
"Fauna Stamp",
"Flower Circlet",
"Forgotten Shore Map Piece",
"Forgotten Shore Map Piece",
"Happy Face Latte",
"Ice Blasted Wig",
"Lightning Wand",
"Lurman",
"Magical Stocking Stuffer",
"Manacle Mace",
"Maractite Waves Coin",
"Maraquan Frisbee",
"Mau Codestone Plushie",
"Mysterious Orchid",
"Nimmo Lost Desert Urchin Cap",
"Orange Negg Goo",
"Pirate Hat Toffees",
"Pumpkin Ink Frame",
"Pygui Nesting Dolls",
"Rubber Power Axe",
"Sand Chomper",
"Sand Jawshell",
"Scary Ink Frame",
"Slimy Bog Scroll",
"Snazzy Moon Comb",
"Starry Peophin Plushie",
"Tuskaninny Treasure",
"Tyrannian Blibble",
"Valentines Bruce Plushie",
"White Squid Root",
"Wind Up Potgatkerchi Toy",
"Wocky Detective Pipe",
"Wooden Grarrl Skeleton",
"2 Gallon Hatz Cap",
"Altachuck",
"Apple Bobbing Cane",
"Cobrall Root",
"CoffChai Blended Tea",
"Dark Nova",
"Dark Red Spooky Candle",
"Evil Hair Clip",
"Fire Muffin",
"Geraptiku Snowglobe",
"Ghostkerchief Banjo",
"Greedy Kadoatie Piggy Bank",
"Green Frost Cannon",
"Green Mynci Sand Bottle",
"Hissi Superball",
"Jazzmosis T-Shirt",
"Laughing Potion",
"Lime Elixir",
"Lucky Bone Necklace",
"Lucky Red Pandaphant Doll",
"M*YNCI Jacket",
"My First Telescope Toy",
"Paintbrush Toothbrush",
"Palm Frond Sculpture",
"Pant Devil Pumpkin",
"Pink Faerie Snowball",
"Purple and Gold Paper Crown",
"Quetzal",
"Red Geraptiku Vase",
"Ringed Scroll",
"Robotic Christmas Quiggle Toy",
"Scado",
"Set Of Marbles",
"Sklyde",
"Snow Aisha",
"Sturdy Blue Shield",
"Summerfun Flotsam Beach Ball",
"Symol",
"Tai-Kai Codestone Plushie",
"Toy Pirate Sword",
"Turmaculus Claw Keychain",
"Wind Up Leeble",
"Wooden Meepit Totem",
"Wooden Pirate Ship",
"8-Bit Snare Drum",
"Avocado Gummy Korbat Tail",
"Bag of Decorative Seashells",
"Basic Fishing Set",
"Blackberry Bouncy Ball",
"Blue Kacheek Plushie",
"Blue Quiggle Plushie",
"Bottle of Grey Sand",
"Bushy Grey Eyebrows",
"Discarded Tuskaninny Plushie",
"Donksaur",
"Dung Shield",
"Gallion Bath Toy",
"Gear Building Blocks",
"Hot Buttered Toast",
"Kassegat Jig Saw Puzzle",
"Leaded Earth Vial",
"Magic Smelly Socks",
"Maraquan Charger Plushie",
"Maraquan Defenders Stamp",
"Mibblie",
"Mud Mixture",
"New Year Fire Crackers",
"Obsidian Dagger",
"Paper Jesters Crown",
"Pinixy Keyring",
"Pumpkin Spice Soap",
"Rainbow Sand",
"Red Bandana",
"Red Gelert Beach Ball",
"Skateboard Toothbrush",
"Snot Pizza Slice",
"Sparkshooter",
"Spooky Ghost Usuki",
"Toy Ukulele",
"Tuskaninny Clay Sculpture Set",
"Vial of Pure Water",
"Zurroball Paddleball",
"2 Gallon Hatz Jacket",
"Amber Sword",
"Baby Fireball Puzzle",
"Bloomarang",
"Blue Beginners Bandana",
"Blue Scorchio Paddleball Game",
"Blue Spiky Cracker Hat",
"Brown Goatee",
"Chocolate Covered Caramel Corn",
"Christmas Markers",
"Club And Rock Game",
"Deformed Maractite Coin",
"Electro Sword",
"Fire Candy Buttons",
"Ghoti",
"Globilol",
"Harris Lamp",
"Hot Cocoa",
"Icy Snowball",
"Island Slorg Usuki Set",
"Jeran Balloon",
"Kiko Blocks",
"Lava Mote",
"Metal Triangle Puzzle",
"Minty Snowager Pie",
"Moehog Hoof Pad",
"Negg Pie",
"Nimmo Lost Desert Urchin Pants",
"Nimmo Pogo Stick",
"Nurias Battle Shield",
"Orange Grundo Wardrobe",
"Pant Devil Ball",
"Pickled Olives",
"Pink Koi Plushie",
"Polarchuck Call",
"Potgatkerchi Plushie",
"Pull Along Kougra",
"Pull Along Peophin",
"Pyrophone",
"Red Wocky Kite",
"Regular Sand Smoothie",
"Resewn Shoyru Plushie",
"Return of Dr. Sloth Valentine Card Set",
"Robot Muffin",
"Rubbish Dump Background",
"Shenkuu Postcard",
"Shoot Kreludor Game",
"Shoulder Armour",
"Sidney in the Box",
"Slorg Care",
"Smiley Yoyo",
"Snowager Ball",
"Sophie the Swamp Witch",
"Speckled Xweetok Puzzle",
"Spooky Ring",
"Squeaky Gelert Toy",
"Tapira",
"Three Wheel Scooter",
"Trumpet Of Deafening",
"Tutorial Certificate of Completion",
"Ukali",
"Winter Usuki Doll",
"Wocky Clay Sculpture Set",
"Wooden Cube Puzzle",
"Xepru",
"Yellow Kiko Keyring",
"Yellow Koi Keyring",
"Yes Boy Ice-Cream Cap",
"Abominable Snowball Usuki Set",
"Amulet of Reflection",
"Black Velvet Cloak",
"Blarthrox Ball",
"Bottle of Red Sand"
];
const cheapFood = [
"Chaosfish",