-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
10619 lines (10619 loc) · 215 KB
/
db.json
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
[
{
"model": "core.animal",
"pk": 1,
"fields": {
"name": "dino",
"description": "Dinos are from an ancient era and will make a unique and engaging pet!"
}
},
{
"model": "core.animal",
"pk": 2,
"fields": {
"name": "lizard",
"description": "Loyal but timid, a lizard will make an excellent pet if you want cool, but quiet!"
}
},
{
"model": "core.animal",
"pk": 3,
"fields": {
"name": "monkey",
"description": "Choosing a monkey will mean a companion for life, but don't try to be their owner! Having a monkey is a partnership."
}
},
{
"model": "core.animal",
"pk": 4,
"fields": {
"name": "mouse",
"description": "Mice are playful and exciting! Scampering around and chasing them will become a part of your daily routine."
}
},
{
"model": "core.animal",
"pk": 5,
"fields": {
"name": "tapir",
"description": "Tapirs are a sort of unusual pet. They will love you, but keep an eye out around them! They tend to be troublesome!"
}
},
{
"model": "core.animal",
"pk": 6,
"fields": {
"name": "bird",
"description": "TBA"
}
},
{
"model": "core.animal",
"pk": 7,
"fields": {
"name": "crab",
"description": "TBA"
}
},
{
"model": "core.animal",
"pk": 8,
"fields": {
"name": "dog",
"description": "TBA"
}
},
{
"model": "core.animal",
"pk": 9,
"fields": {
"name": "gargoyle",
"description": "TBA"
}
},
{
"model": "core.animal",
"pk": 10,
"fields": {
"name": "penguin",
"description": "TBA"
}
},
{
"model": "core.avatar",
"pk": 1,
"fields": {
"name": "A E S T H E T I C",
"url": "aesthetic",
"description": "To get this avatar, have an opalescent or marble pet and gather inspiration at the Rose Garden."
}
},
{
"model": "core.avatar",
"pk": 2,
"fields": {
"name": "Black!",
"url": "black",
"description": "To get this avatar, have your starting pet be the color black, or unlock the color black in all of the five main species."
}
},
{
"model": "core.avatar",
"pk": 3,
"fields": {
"name": "Blue!",
"url": "blue",
"description": "To get this avatar, have your starting pet be the color blue, or unlock the color blue in all of the five main species."
}
},
{
"model": "core.avatar",
"pk": 4,
"fields": {
"name": "Dino!",
"url": "dino",
"description": "To get this avatar, have your starting pet be the animal Dino, or unlock the pet Dino in all of the five main colors."
}
},
{
"model": "core.avatar",
"pk": 5,
"fields": {
"name": "Divine",
"url": "divine",
"description": "To get this avatar, complete (without cancelling) fifteen goddess quests in one day."
}
},
{
"model": "core.avatar",
"pk": 6,
"fields": {
"name": "Feeling Blue",
"url": "feeling-blue",
"description": "To get this avatar, have a blue pet, and have five items with 'blue' in the name in your inventory."
}
},
{
"model": "core.avatar",
"pk": 7,
"fields": {
"name": "Green!",
"url": "green",
"description": "To get this avatar, have your starting pet be the color green, or unlock the color green in all of the five main species."
}
},
{
"model": "core.avatar",
"pk": 8,
"fields": {
"name": "Hi, I'm New!",
"url": "hi-im-new",
"description": "To get this avatar, register for Primaria World."
}
},
{
"model": "core.avatar",
"pk": 9,
"fields": {
"name": "Historic",
"url": "historic",
"description": "To get this avatar, have a Baroque colored pet, and add an item to your gallery."
}
},
{
"model": "core.avatar",
"pk": 10,
"fields": {
"name": "Lizard!",
"url": "lizard",
"description": "To get this avatar, have your starting pet be the animal Lizard, or unlock the pet Lizard in all of the five main colors."
}
},
{
"model": "core.avatar",
"pk": 11,
"fields": {
"name": "Monkey!",
"url": "monkey",
"description": "To get this avatar, have your starting pet be the animal Monkey, or unlock the pet Monkey in all of the five main colors."
}
},
{
"model": "core.avatar",
"pk": 12,
"fields": {
"name": "Mouse!",
"url": "mouse",
"description": "To get this avatar, have your starting pet be the animal Mouse, or unlock the pet Mouse in all of the five main colors."
}
},
{
"model": "core.avatar",
"pk": 13,
"fields": {
"name": "Pumpkin-Eater",
"url": "pumpkin-eater",
"description": "To get this avatar, attempt to cheat on a game using Javascript, or use a cheat code."
}
},
{
"model": "core.avatar",
"pk": 14,
"fields": {
"name": "Rainbow",
"url": "rainbow",
"description": "To get this avatar, have a pet with ten colors unlocked, including all basic colors."
}
},
{
"model": "core.avatar",
"pk": 15,
"fields": {
"name": "Red!",
"url": "red",
"description": "To get this avatar, have your starting pet be the color red, or unlock the color red in all of the five main species."
}
},
{
"model": "core.avatar",
"pk": 16,
"fields": {
"name": "Riches!",
"url": "riches",
"description": "To get this avatar, have at least one million points in the bank."
}
},
{
"model": "core.avatar",
"pk": 17,
"fields": {
"name": "Saved a Penguin",
"url": "saved-a-penguin",
"description": "To get this avatar, pull up a Six Pack Rings while fishing (awarded randomly)."
}
},
{
"model": "core.avatar",
"pk": 18,
"fields": {
"name": "Shhhh!!!",
"url": "shhhh",
"description": "To get this avatar, attempt to visit the secrets page."
}
},
{
"model": "core.avatar",
"pk": 19,
"fields": {
"name": "Starry Night",
"url": "starry-night",
"description": "To get this avatar, use a starry color potion on your pet from 6pm to 6am."
}
},
{
"model": "core.avatar",
"pk": 20,
"fields": {
"name": "Tapir!",
"url": "tapir",
"description": "To get this avatar, have your starting pet be the animal Tapir, or unlock the pet Tapir in all of the five main colors."
}
},
{
"model": "core.avatar",
"pk": 21,
"fields": {
"name": "That Tasted Funny...",
"url": "that-tasted-funny",
"description": "To get this avatar, use a hunger stat potion on your pet (awarded randomly)."
}
},
{
"model": "core.avatar",
"pk": 22,
"fields": {
"name": "Thinker",
"url": "thinker",
"description": "To get this avatar, find a philosophy book while gathering at the Rose Garden."
}
},
{
"model": "core.avatar",
"pk": 23,
"fields": {
"name": "Very Chatty",
"url": "very-chatty",
"description": "To get this avatar, post 100 replies on the boards."
}
},
{
"model": "core.avatar",
"pk": 24,
"fields": {
"name": "Witch!!!",
"url": "witch",
"description": "To get this avatar, use a morph potion on your pet (awarded randomly)."
}
},
{
"model": "core.avatar",
"pk": 25,
"fields": {
"name": "Yay! Pink!!",
"url": "yay-pink",
"description": "To get this avatar, have a pink pet and purchase something with 'pink' in the name."
}
},
{
"model": "core.avatar",
"pk": 26,
"fields": {
"name": "Yellow!",
"url": "yellow",
"description": "To get this avatar, have your starting pet be the color yellow, or unlock the color yellow in all of the five main species."
}
},
{
"model": "core.avatar",
"pk": 27,
"fields": {
"name": "Big If True",
"url": "big-if-true",
"description": "To get this avatar, comment on an announcement post (awarded randomly)."
}
},
{
"model": "core.avatar",
"pk": 28,
"fields": {
"name": "Donor",
"url": "donor",
"description": "To get this avatar, donate to the website."
}
},
{
"model": "core.avatar",
"pk": 29,
"fields": {
"name": "Loafing Around",
"url": "loafing-around",
"description": "To get this avatar, take a chunk from the Almighty Meatloaf while having at least 25 meatloaves in your inventory."
}
},
{
"model": "core.avatar",
"pk": 30,
"fields": {
"name": "Rulebreaker!",
"url": "rulebreaker",
"description": "To get this avatar, use the machine in the restricted area (awarded randomly)."
}
},
{
"model": "core.avatar",
"pk": 31,
"fields": {
"name": "Trading Cards",
"url": "trading-cards",
"description": "To get this avatar, trade one card with someone for another card in the trade center."
}
},
{
"model": "core.avatar",
"pk": 32,
"fields": {
"name": "Sweet~",
"url": "sweet",
"description": "To get this avatar, have a sprinkle colored pet and feed them a cupcake."
}
},
{
"model": "shop.category",
"pk": 1,
"fields": {
"name": "fruit"
}
},
{
"model": "shop.category",
"pk": 2,
"fields": {
"name": "vegetable"
}
},
{
"model": "shop.category",
"pk": 3,
"fields": {
"name": "book"
}
},
{
"model": "shop.category",
"pk": 4,
"fields": {
"name": "organic food"
}
},
{
"model": "shop.category",
"pk": 5,
"fields": {
"name": "medicine"
}
},
{
"model": "shop.category",
"pk": 6,
"fields": {
"name": "herbal"
}
},
{
"model": "shop.category",
"pk": 7,
"fields": {
"name": "potion"
}
},
{
"model": "shop.category",
"pk": 8,
"fields": {
"name": "color potion"
}
},
{
"model": "shop.category",
"pk": 9,
"fields": {
"name": "morph potion"
}
},
{
"model": "shop.category",
"pk": 10,
"fields": {
"name": "plush"
}
},
{
"model": "shop.category",
"pk": 11,
"fields": {
"name": "stat potion"
}
},
{
"model": "shop.category",
"pk": 12,
"fields": {
"name": "junk food"
}
},
{
"model": "shop.category",
"pk": 13,
"fields": {
"name": "playing card"
}
},
{
"model": "shop.category",
"pk": 14,
"fields": {
"name": "fishing"
}
},
{
"model": "shop.category",
"pk": 15,
"fields": {
"name": "crystal"
}
},
{
"model": "shop.category",
"pk": 16,
"fields": {
"name": "colormorph potion"
}
},
{
"model": "shop.category",
"pk": 17,
"fields": {
"name": "area card"
}
},
{
"model": "shop.category",
"pk": 18,
"fields": {
"name": "mystery potion"
}
},
{
"model": "shop.category",
"pk": 19,
"fields": {
"name": "meatloaf"
}
},
{
"model": "shop.category",
"pk": 20,
"fields": {
"name": "philosophy genre"
}
},
{
"model": "shop.category",
"pk": 21,
"fields": {
"name": "fiction genre"
}
},
{
"model": "shop.category",
"pk": 22,
"fields": {
"name": "nonfiction genre"
}
},
{
"model": "shop.category",
"pk": 23,
"fields": {
"name": "teen genre"
}
},
{
"model": "shop.category",
"pk": 24,
"fields": {
"name": "satire genre"
}
},
{
"model": "shop.category",
"pk": 25,
"fields": {
"name": "souvenir"
}
},
{
"model": "shop.item",
"pk": 1,
"fields": {
"name": "Catch-44 by Joe Hecker",
"url": "catch-44-by-joe-hecker",
"description": "TBA",
"category": 3,
"second_category": 24,
"price_class": 5,
"rarity": 1,
"hunger": 0,
"wellness": 0,
"happiness": 1,
"usable": true
}
},
{
"model": "shop.item",
"pk": 2,
"fields": {
"name": "Dusk by Tiffany Mayor",
"url": "dusk by tiffany mayor",
"description": "TBA",
"category": 3,
"second_category": 23,
"price_class": 3,
"rarity": 1,
"hunger": 0,
"wellness": 0,
"happiness": 1,
"usable": true
}
},
{
"model": "shop.item",
"pk": 3,
"fields": {
"name": "Fifty Shades of Beige by Eel Jame",
"url": "fifty-shades-of-beige-by-eel-jame",
"description": "TBA",
"category": 3,
"second_category": 21,
"price_class": 1,
"rarity": 1,
"hunger": 0,
"wellness": -1,
"happiness": 1,
"usable": true
}
},
{
"model": "shop.item",
"pk": 4,
"fields": {
"name": "The Girl on the Subway by Paul Falcons",
"url": "the-girl-on-the-subway-by-paul-falcons",
"description": "TBA",
"category": 3,
"second_category": 21,
"price_class": 6,
"rarity": 1,
"hunger": 0,
"wellness": 0,
"happiness": 1,
"usable": true
}
},
{
"model": "shop.item",
"pk": 5,
"fields": {
"name": "To Injure a Mimicbird by Luter Lee",
"url": "to-injure-a-mimicbird-by-luter-lee",
"description": "TBA",
"category": 3,
"second_category": 21,
"price_class": 4,
"rarity": 1,
"hunger": 0,
"wellness": 0,
"happiness": 2,
"usable": true
}
},
{
"model": "shop.item",
"pk": 6,
"fields": {
"name": "Apple",
"url": "apple",
"description": "TBA",
"category": 1,
"second_category": 4,
"price_class": 1,
"rarity": 1,
"hunger": 1,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 7,
"fields": {
"name": "Grapes",
"url": "grapes",
"description": "TBA",
"category": 1,
"second_category": 4,
"price_class": 2,
"rarity": 2,
"hunger": 1,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 8,
"fields": {
"name": "Lemon",
"url": "lemon",
"description": "TBA",
"category": 1,
"second_category": 4,
"price_class": 3,
"rarity": 2,
"hunger": 1,
"wellness": 0,
"happiness": -1,
"usable": true
}
},
{
"model": "shop.item",
"pk": 9,
"fields": {
"name": "Orange",
"url": "orange",
"description": "TBA",
"category": 1,
"second_category": 4,
"price_class": 1,
"rarity": 1,
"hunger": 1,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 10,
"fields": {
"name": "Strawberry",
"url": "strawberry",
"description": "TBA",
"category": 1,
"second_category": 4,
"price_class": 2,
"rarity": 1,
"hunger": 1,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 11,
"fields": {
"name": "Broccoli",
"url": "broccoli",
"description": "TBA",
"category": 2,
"second_category": 4,
"price_class": 1,
"rarity": 1,
"hunger": 2,
"wellness": 0,
"happiness": -1,
"usable": true
}
},
{
"model": "shop.item",
"pk": 12,
"fields": {
"name": "Carrot",
"url": "carrot",
"description": "TBA",
"category": 2,
"second_category": 4,
"price_class": 2,
"rarity": 1,
"hunger": 1,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 13,
"fields": {
"name": "Pepper",
"url": "pepper",
"description": "TBA",
"category": 2,
"second_category": 4,
"price_class": 3,
"rarity": 2,
"hunger": 1,
"wellness": 0,
"happiness": -1,
"usable": true
}
},
{
"model": "shop.item",
"pk": 14,
"fields": {
"name": "Turnip",
"url": "turnip",
"description": "TBA",
"category": 2,
"second_category": 4,
"price_class": 3,
"rarity": 1,
"hunger": 1,
"wellness": 0,
"happiness": -1,
"usable": true
}
},
{
"model": "shop.item",
"pk": 15,
"fields": {
"name": "Cabbage",
"url": "cabbage",
"description": "TBA",
"category": 2,
"second_category": 4,
"price_class": 1,
"rarity": 1,
"hunger": 1,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 16,
"fields": {
"name": "Warm Compress",
"url": "compress",
"description": "TBA",
"category": 6,
"second_category": 5,
"price_class": 2,
"rarity": 1,
"hunger": 0,
"wellness": 10,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 17,
"fields": {
"name": "Fish Oil Pills",
"url": "fish-oil-pills",
"description": "TBA",
"category": 6,
"second_category": 5,
"price_class": 2,
"rarity": 2,
"hunger": 0,
"wellness": 10,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 18,
"fields": {
"name": "Herbal Tea",
"url": "herbal-tea",
"description": "TBA",
"category": 6,
"second_category": 5,
"price_class": 1,
"rarity": 2,
"hunger": 0,
"wellness": 10,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 19,
"fields": {
"name": "Oatmeal Bath",
"url": "oatmeal",
"description": "TBA",
"category": 6,
"second_category": 5,
"price_class": 2,
"rarity": 1,
"hunger": 0,
"wellness": 10,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 20,
"fields": {
"name": "Spoonful of Sugar",
"url": "spoonful",
"description": "TBA",
"category": 6,
"second_category": 5,
"price_class": 1,
"rarity": 1,
"hunger": 0,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 21,
"fields": {
"name": "Red Potion",
"url": "red-potion",
"description": "TBA",
"category": 7,
"second_category": 8,
"price_class": 8,
"rarity": 2,
"hunger": 0,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 22,
"fields": {
"name": "Green Potion",
"url": "green-potion",
"description": "tba",
"category": 7,
"second_category": 8,
"price_class": 8,
"rarity": 2,
"hunger": 0,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 23,
"fields": {
"name": "Yellow Potion",
"url": "yellow-potion",
"description": "TBA",
"category": 7,
"second_category": 8,
"price_class": 8,
"rarity": 2,
"hunger": 0,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 24,
"fields": {
"name": "Blue Potion",
"url": "blue-potion",
"description": "TBA",
"category": 7,
"second_category": 8,
"price_class": 8,
"rarity": 2,
"hunger": 0,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 25,
"fields": {
"name": "Black Potion",
"url": "black-potion",
"description": "TBA",
"category": 7,
"second_category": 8,
"price_class": 8,
"rarity": 2,
"hunger": 0,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 26,
"fields": {
"name": "Mouse Potion",
"url": "mouse-potion",
"description": "TBA",
"category": 7,
"second_category": 9,
"price_class": 9,
"rarity": 2,
"hunger": 0,
"wellness": 0,
"happiness": 0,
"usable": true
}
},
{
"model": "shop.item",
"pk": 27,
"fields": {
"name": "Tapir Potion",
"url": "tapir-potion",
"description": "TBA",
"category": 7,
"second_category": 9,
"price_class": 9,
"rarity": 2,
"hunger": 0,
"wellness": 0,
"happiness": 0,