-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmodels.json
More file actions
1602 lines (1582 loc) · 57.8 KB
/
Copy pathmodels.json
File metadata and controls
1602 lines (1582 loc) · 57.8 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
{
"1": {
"name": "Jumper",
"description": "The jumper is the most common spaceship in the Human. It was first introduced during the failed terraforming of Saturn where it demonstrated its mining ability on the planet’s rings. In addition to being Enduring and indulgent on pilots mistake, there is no garage in the galaxy that can’t repair a Jumper. This vessel will probably still be harnessing MUST in a millenia.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "1000",
"race": "Human",
"image": {
"frame": "common",
"model": "jumper",
"background": "human"
},
"scarcity": "Common",
"primary": "#9f9e8a",
"extra": "#007bff",
"stats": {
"radar": 100,
"drill": 100,
"machinery": 100
}
},
"2": {
"name": "Explorer",
"description": "Initially designed for long distance travel at a time where humanity was bound find new resources to survive, the Explorer proved perfect for the exploitation of long period asteroids. It features a small windowed deck but a vast interior usually equipped with all necessary amenities to kill time from bilboquet to vintage bugged kernels.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "1000",
"race": "Human",
"image": {
"frame": "common",
"model": "explorer",
"background": "human"
},
"scarcity": "Common",
"primary": "#9f9e8a",
"extra": "#007bff",
"stats": {
"radar": 110,
"drill": 100,
"machinery": 90
}
},
"3": {
"name": "Prospector",
"description": "As a modern and better conceived version of the Explorer, the Prospector can house a larger crew and offers very comfortable living conditions. The hull made of layered ionized titanium plates that recall the tiled roofs of ancient buildings in Asia. Crew members typically take turn to hibernate and to maintain the Bussard ramjets. This vessel is built to last and hoard MUST.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "100",
"race": "Human",
"image": {
"frame": "uncommon",
"model": "prospector",
"background": "human"
},
"scarcity": "Uncommon",
"primary": "#9f9e8a",
"extra": "#007bff",
"stats": {
"radar": 120,
"drill": 140,
"machinery": 80
}
},
"4": {
"name": "Pioneer",
"description": "Is there any corner of the Milky Way a Pioneer can’t reach? Probably not. The single thruster propulsion relies on pulsated photon on a middle sized unobtanium ore which guarantee the highest standard in durability and manoeuvrability. Drills are conveniently placed in the bottom wings for quick mining adjustment. Scarcity of unotanium is the only reason why not everybody is flying in a Pioneer.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "100",
"race": "Human",
"image": {
"frame": "uncommon",
"model": "pioneer",
"background": "human"
},
"scarcity": "Uncommon",
"primary": "#9f9e8a",
"extra": "#007bff",
"stats": {
"radar": 140,
"drill": 120,
"machinery": 80
}
},
"5": {
"name": "Space Digger",
"description": "Fast and noisy, the Space Digger sounds like a never ending allegro concerto in a flying cathedral. The main thruster is powered by a naturally aspirated dark matter fueled engine. Assembly of such drives is so incredibly complicated that it is a true miracle the Human managed to produce ten of them. The two midsized Bussard ramjets on the sides allow incredibly quick positioning. When it diggs the space trembles over several parsecs.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "10",
"race": "Human",
"image": {
"frame": "rare",
"model": "spacedigger",
"background": "human"
},
"scarcity": "Rare",
"primary": "#9f9e8a",
"extra": "#007bff",
"stats": {
"radar": 100,
"drill": 220,
"machinery": 100
}
},
"6": {
"name": "Drone",
"description": "The Drone is the new generation of Al’Ong astrominers set the replace the mass produced Pathfinder as time goes. This spaceship takes successful features of its predecessors and add a couple of technological development. Easy to handle at high or low speed, its large windowed deck offers a 360 vision on nearby objects. Both a great vessel to start with a great to addition to a mining armada.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "1000",
"race": "Al'Ong",
"image": {
"frame": "common",
"model": "drone",
"background": "along"
},
"scarcity": "Common",
"primary": "#289fdb",
"extra": "#ffbf00",
"stats": {
"radar": 100,
"drill": 110,
"machinery": 90
}
},
"7": {
"name": "Pathfinder",
"description": "The Pathfinder represents the grammar of Al’Ong classic design principles. The spaceship has two independent thrusters for precise trajectory adjustment. Most Al’Ong pilots pass their license to fly on a Pathfinder and spare parts are easy to find. All in all this is a robust spacecraft that will undoubtedly outlive its owner.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "1000",
"race": "Al'Ong",
"image": {
"frame": "common",
"model": "pathfinder",
"background": "along"
},
"scarcity": "Common",
"primary": "#289fdb",
"extra": "#ffbf00",
"stats": {
"radar": 110,
"drill": 90,
"machinery": 100
}
},
"8": {
"name": "Vanguard",
"description": "Manoeuvrable and quick, beneath its round bodywork lays a roaring magnetic resonance engine making the Vanguard the dream astrominer of any Al’Ong kid. Awarded Best Spaceship Of The Epoch for five consecutive year by the Intergalactic Mining Association, there’s no need to slap on hull to convince anyone that this bad boy can fit so much MUST in it. Too bad the production as such small batches.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "100",
"race": "Al'Ong",
"image": {
"frame": "uncommon",
"model": "vanguard",
"background": "along"
},
"scarcity": "Uncommon",
"primary": "#289fdb",
"extra": "#ffbf00",
"stats": {
"radar": 140,
"drill": 100,
"machinery": 100
}
},
"9": {
"name": "Handshaker",
"description": "Pragmatic and efficient, the Handshaker is Al’Ong engineering at its best. This vessel is capable of smoothly anchoring itself to any object whatever its speed, size or crumbliness. The single thruster delivers its torque with such balance that its pilot can feel like being grabbing MUST at all time, hence the name Handshaker.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "100",
"race": "Al'Ong",
"image": {
"frame": "uncommon",
"model": "handshaker",
"background": "along"
},
"scarcity": "Uncommon",
"primary": "#289fdb",
"extra": "#ffbf00",
"stats": {
"radar": 100,
"drill": 140,
"machinery": 100
}
},
"10": {
"name": "Senator",
"description": "Ingeniously conceived with inspiration from the few Titan astrominers the Al’Ong have ever been able to witness, a Senator remains very rare due to its complexity. This vessel is said to be powered by a MUST Quantum entanglement engine tying all Senators together. A remarkable hydraulic flap helps the pulling and mining maneuvers. Under the hull a visitor can expect an opulent interior accumulated over years of mining activities.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "10",
"race": "Al'Ong",
"image": {
"frame": "rare",
"model": "senator",
"background": "along"
},
"scarcity": "Rare",
"primary": "#289fdb",
"extra": "#ffbf00",
"stats": {
"radar": 160,
"drill": 160,
"machinery": 100
}
},
"11": {
"name": "Sunriser",
"description": "<blockquote>Endlessly dark skies,<br/>MUST towards gravity falls,<br/>Where Suns also rise.</blockquote><br/>Only one spaceship, a Jumper, is known to have ever been pulled by Sunriser and those 3 lines where decrypted from the console logs of the vessel. Speculations are endless on the true purpose and value of the Sunriser.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "3",
"race": "Titan",
"image": {
"frame": "mythic",
"model": "sunriser",
"background": "titan"
},
"scarcity": "Mythic",
"primary": "#b3b316",
"extra": "#359aff",
"stats": {
"radar": 220,
"drill": 220,
"machinery": 100
}
},
"12": {
"name": "Auditor",
"description": "Quick, ergonomic, easy to park, and efficient at harvesting, the Auditor is a marvel although the spaceship is quite common among the Treasurers. The Auditor is perfect for exploratory mission and mining opportunity assessment. The hull is made out of plexinium, a vibration resistant alloy the Treasurers conceived as a cheaper version of gundamium. A turbocharged high performance scramjet completes the model.",
"collection": "liquidity provider",
"background_color": "f3f2f3",
"external_url": "",
"supply": "300",
"race": "Treasurers",
"image": {
"frame": "common",
"model": "auditor",
"background": "treasurers"
},
"scarcity": "Common",
"primary": "#5B4E64",
"extra": "#0085A3",
"stats": {
"radar": 110,
"drill": 100,
"machinery": 90
}
},
"13": {
"name": "Comptroller",
"description": "Neither a controller nor a computer, a comptroller carries a computational power similar to a small Rez ship combined with the sturdiness and reliability of Treasurer engineering. A comptroller is capable of vibrationless gravitational slingshots as well as rapid asteroid approach. The mining gears have exceptional reputations. It’s said there are no spare parts for the mandresl; they never break.",
"collection": "liquidity provider",
"background_color": "f3f2f3",
"external_url": "",
"supply": "80",
"race": "Treasurers",
"image": {
"frame": "uncommon",
"model": "comptroller",
"background": "treasurers"
},
"scarcity": "Uncommon",
"primary": "#5B4E64",
"extra": "#0085A3",
"stats": {
"radar": 120,
"drill": 120,
"machinery": 100
}
},
"14": {
"name": "Enforcer",
"description": "Exceptionally crafted with gundamium and tempered plexinium, produced in limited quantities, and blessed with unbelievable driving dynamics, the Enforcer is simply mind blowing. Two turbocharged high performance scramjets assist two Quantum vacuum thrusters. This quartet’s melody is only matched by the piling up of mined MUST in the sumptuous and cosy interior. Fly an Enforcer and you will never fly anything else.",
"collection": "liquidity provider",
"background_color": "f3f2f3",
"external_url": "",
"supply": "15",
"race": "Treasurers",
"image": {
"frame": "rare",
"model": "enforcer",
"background": "treasurers"
},
"scarcity": "Rare",
"primary": "#5B4E64",
"extra": "#0085A3",
"stats": {
"radar": 130,
"drill": 160,
"machinery": 130
}
},
"15": {
"name": "Chancellor",
"description": "This flagship is nothing less than the apex of the Treasurers’ fleet and includes the most advanced technologies along with unique features. Chancellors were exclusively reserved to the highest Treasurer dignitaries and as the vessels ended up on the market, they gradually became status granting assets. In addition to the three quantum vacuum thrusters, the plasma repellent coating on the wings allows breathtaking speed and maneuverability in solar winds. Truly a magnificent spaceship.",
"collection": "liquidity provider",
"background_color": "f3f2f3",
"external_url": "",
"supply": "5",
"race": "Treasurers",
"image": {
"frame": "mythic",
"model": "chancellor",
"background": "treasurers"
},
"scarcity": "Mythic",
"primary": "#5B4E64",
"extra": "#0085A3",
"stats": {
"radar": 220,
"drill": 180,
"machinery": 140
}
},
"16": {
"name": "Petrack",
"description": "The formation of those vessels are still very badly understood. The main hypothesis is that in some ways the MUST or some of the life forms it carries manage to take over another spaceship after years of harvesting. Whether it is a galactic virus or interstellar decay, it doesn’t deter anyone from mining. Infected spaceships barely communicate with standard procedures. Humans call them Petra, Rez say Pet Rock, and most people settle on Petrack.",
"collection": "genesis",
"background_color": "f3f2f3",
"external_url": "",
"supply": "100",
"race": "Asterion",
"image": {
"frame": "uncommon",
"model": "petrack",
"background": "asterion"
},
"scarcity": "Uncommon",
"primary": "#4C4C4C",
"extra": "#00AAFF",
"stats": {
"radar": 100,
"drill": 120,
"machinery": 120
}
},
"17": {
"name": "Nomad",
"description": "",
"collection": "don't buy meme",
"background_color": "f3f2f3",
"external_url": "",
"supply": "50",
"race": "Rez",
"image": {
"frame": "common",
"model": "nomad",
"background": "rez1"
},
"scarcity": "common",
"primary": "#ffffff",
"extra": "#7dc2fb",
"invariant": true,
"stats": {
"radar": 120,
"drill": 80,
"machinery": 100
}
},
"18": {
"name": "Netrunner",
"description": "",
"collection": "don't buy meme",
"background_color": "f3f2f3",
"external_url": "",
"supply": "10",
"race": "Rez",
"image": {
"frame": "uncommon",
"model": "netrunner",
"background": "rez2"
},
"scarcity": "uncommon",
"primary": "#ae8bff",
"extra": "#a0e9fb",
"invariant": true,
"stats": {
"radar": 80,
"drill": 160,
"machinery": 100
}
},
"19": {
"name": "Highrider",
"description": "",
"collection": "don't buy meme",
"background_color": "f3f2f3",
"external_url": "",
"supply": "5",
"race": "Rez",
"image": {
"frame": "rare",
"model": "highrider",
"background": "rez3"
},
"scarcity": "rare",
"primary": "#c4cce2",
"extra": "#bb97ff",
"invariant": true,
"stats": {
"radar": 160,
"drill": 130,
"machinery": 130
}
},
"20": {
"name": "Apogee",
"description": "",
"collection": "don't buy meme",
"background_color": "f3f2f3",
"external_url": "",
"supply": "1",
"race": "Rez",
"image": {
"frame": "mythic",
"model": "apogee",
"background": "rez4"
},
"scarcity": "mythic",
"primary": "#e1a1f8",
"extra": "#ffd8ad",
"invariant": true,
"stats": {
"radar": 260,
"drill": 100,
"machinery": 180
}
},
"21": {
"name": "Journey to the West",
"description": "",
"collection": "chinese new year",
"background_color": "f3f2f3",
"external_url": "",
"supply": "777",
"race": "Tianzi",
"image": {
"frame": "common",
"model": "journeytothewest",
"background": "tianzi"
},
"scarcity": "Common",
"primary": "#6E0106",
"extra": "#F8BE53",
"stats": {
"radar": 100,
"drill": 120,
"machinery": 80
}
},
"22": {
"name": "Earthly Demons",
"description": "",
"collection": "chinese new year",
"background_color": "f3f2f3",
"external_url": "",
"supply": "72",
"race": "Tianzi",
"image": {
"frame": "uncommon",
"model": "earthlydemons",
"background": "tianzi"
},
"scarcity": "Uncommon",
"primary": "#6E0106",
"extra": "#F8BE53",
"stats": {
"radar": 180,
"drill": 100,
"machinery": 60
}
},
"23": {
"name": "Heavenly Spirits",
"description": "",
"collection": "chinese new year",
"background_color": "f3f2f3",
"external_url": "",
"supply": "36",
"race": "Tianzi",
"image": {
"frame": "rare",
"model": "heavenlyspirits",
"background": "tianzi"
},
"scarcity": "Rare",
"primary": "#6E0106",
"extra": "#F8BE53",
"stats": {
"radar": 130,
"drill": 190,
"machinery": 100
}
},
"24": {
"name": "Three Kingdoms",
"description": "",
"collection": "chinese new year",
"background_color": "f3f2f3",
"external_url": "",
"supply": "3",
"race": "Tianzi",
"image": {
"frame": "mythic",
"model": "threekingdoms",
"background": "tianzi"
},
"scarcity": "Mythic",
"primary": "#6E0106",
"extra": "#F8BE53",
"stats": {
"radar": 100,
"drill": 340,
"machinery": 100
}
},
"25": {
"name": "Fren",
"description": "“Because it was my Fren; because it was me”. Frens are valued the most among spaceships for the special relation they have with their pilots. Additionally, Frens are reliable and will never let you down. This vessel is not easy to find in the galaxy and is blessed by the saying: “Fren ships multiply the good of life and divide the evil”",
"collection": "aavegotchi",
"background_color": "f3f2f3",
"external_url": "",
"supply": "200",
"race": "Gotchi",
"image": {
"frame": "uncommon",
"model": "fren",
"background": "gotchi"
},
"scarcity": "Uncommon",
"primary": "#FCFAFF",
"extra": "#FA34F3",
"stats": {
"radar": 100,
"drill": 140,
"machinery": 100
}
},
"26": {
"name": "Monocle",
"description": "Monocle spaceships provide astounding flying capabilities thanks to an audacious asymmetric cockpit design. Designed by gentlemen, for gentlemen, the steering is remarquable and its course is always distinguished. The plate of the vessel shows “AGG -2, BRN +3” UFO on every model ever produced.",
"collection": "aavegotchi",
"background_color": "f3f2f3",
"external_url": "",
"supply": "200",
"race": "Gotchi",
"image": {
"frame": "uncommon",
"model": "monocle",
"background": "gotchi"
},
"scarcity": "Uncommon",
"primary": "#FCFAFF",
"extra": "#FA34F3",
"stats": {
"radar": 180,
"drill": 120,
"machinery": 40
}
},
"27": {
"name": "Curve",
"description": "Curve is meant to fit the shape of any minable object. The most cutting-edge scientists of the galaxy contributed to Curve engineering and achieved one of the highest known mining efficiency ratings. The two cosmic combustion chambers are turbo boosted by eight crystal cylinders, which allow Frens and others to be pulled by a Curve like child’s play. Everyone bonds with Curves - especially in straight lines.",
"collection": "aavegotchi",
"background_color": "f3f2f3",
"external_url": "",
"supply": "10",
"race": "Gotchi",
"image": {
"frame": "rare",
"model": "curve",
"background": "gotchi"
},
"scarcity": "Rare",
"primary": "#FCFAFF",
"extra": "#FA34F3",
"stats": {
"radar": 100,
"drill": 190,
"machinery": 130
}
},
"28": {
"name": "GHST",
"description": "As the original prototype of the Curve, the GHST is a phenomenal, one of a kind spaceship. With no less than five cosmic combustion chambers powered by the two largest crystals ever hoarded by the Frens, this vessel sets the highest standard of mobility. The few who have ever glimpsed the GHST in real life recall being left dazed by how it seamlessly floated from one asteroid to the next, leaving a sparkling wake of crystal residue behind it.",
"collection": "aavegotchi",
"background_color": "f3f2f3",
"external_url": "",
"supply": "1",
"race": "Gotchi",
"image": {
"frame": "mythic",
"model": "ghst",
"background": "gotchi"
},
"scarcity": "Mythic",
"primary": "#FCFAFF",
"extra": "#FA34F3",
"invariant": true,
"stats": {
"radar": 140,
"drill": 260,
"machinery": 140
}
},
"29": {
"name": "Pickle",
"description": "Pickle was brined at an early age by a leading federation miner, looking for a new generation of solid all-rounder ships with enough attitude to tackle comets from all angles. It has a streamlined torpedo-like design with three booster engines, flanked by two manoeuvring jets to make sure it’s always well positioned.",
"collection": "pickle finance",
"background_color": "f3f2f3",
"external_url": "",
"supply": "50",
"race": "Cucurbitaceae",
"image": {
"frame": "uncommon",
"model": "pickle",
"background": "Cucurbitaceae"
},
"scarcity": "Uncommon",
"primary": "#14BE0E",
"extra": "#EDA200",
"stats": {
"radar": 60,
"drill": 140,
"machinery": 140
}
},
"30": {
"name": "Slice",
"description": "Slice was created following engineering experimentation designed to double the power of the original Pickle design. The result was a ship that delivers exceptional radar range and mining area. It’s not the fastest to reload, but its schizophrenic personality will more than make up for any lethargy.",
"collection": "pickle finance",
"background_color": "f3f2f3",
"external_url": "",
"supply": "50",
"race": "Cucurbitaceae",
"image": {
"frame": "uncommon",
"model": "slice",
"background": "Cucurbitaceae"
},
"scarcity": "Uncommon",
"primary": "#14BE0E",
"extra": "#EDA200",
"stats": {
"radar": 220,
"drill": 100,
"machinery": 20
}
},
"31": {
"name": "Sandwich",
"description": "Sandwich was the result of years of development by scientists committed to finding the ultimate all-in-one solution. This ship includes one of the largest single-main-thrusters yet seen across the galaxy. The result is an awesome all-rounder that has great mining power, reasonable cool down and solid coverage.",
"collection": "pickle finance",
"background_color": "f3f2f3",
"external_url": "",
"supply": "5",
"race": "Cucurbitaceae",
"image": {
"frame": "rare",
"model": "sandwich",
"background": "Cucurbitaceae"
},
"scarcity": "Rare",
"primary": "#14BE0E",
"extra": "#EDA200",
"stats": {
"radar": 130,
"drill": 220,
"machinery": 70
}
},
"32": {
"name": "The Mason Jar",
"description": "The Mason Jar was dismissed as myth for many years, despite the rumours that filtered across the galaxy. The pet project of legendary engineer Rick, it was developed in top secret until ready for release. It incorporates a hyper-core that helps it to deliver exceptional mining power, making it one of the most feared ships ever to exist.",
"collection": "pickle finance",
"background_color": "f3f2f3",
"external_url": "",
"supply": "1",
"race": "Cucurbitaceae",
"image": {
"frame": "mythic",
"model": "themasonjar",
"background": "Cucurbitaceae"
},
"scarcity": "Mythic",
"primary": "#14BE0E",
"extra": "#EDA200",
"invariant": true,
"stats": {
"radar": 140,
"drill": 420,
"machinery": -20
}
},
"33": {
"name": "Anakuma",
"description": "The badger-like Mele race prefer nocturnal light and subterranean living quarters, and the Anakuma is designed as a snug, trim mining ship, almost like a cozy warren capable of warp drive. As such, it is popular as much for its homey esthetic as its affordable performance. Its single-engine thruster is highly reliable while providing solid maneuverability. As the Mele saying goes, an Anakuma sails through the stars like a flying den.",
"collection": "badger",
"background_color": "f3f2f3",
"external_url": "",
"supply": "100",
"race": "Meles",
"image": {
"frame": "uncommon",
"model": "anakuma",
"background": "meles"
},
"scarcity": "Uncommon",
"primary": "#ffffff",
"extra": "#f2a52b",
"stats": {
"radar": 110,
"drill": 130,
"machinery": 100
}
},
"34": {
"name": "Mellivora",
"description": "The Mellivora represents the pinnacle of Mele technology, with not only subspace tracking systems that can sense the smallest amounts of ore, but drone-based Mana harvesters that can bring in the coveted honey-like substance without requiring a course deviation. As a coveted ship that’s usually filled with precious cargo, it also comes equipped with photon cannons to ward off potential space pirates. Other races have tried, without success, to reverse engineer this ship’s sensitive ore-tracking technology.",
"collection": "badger",
"background_color": "f3f2f3",
"external_url": "",
"supply": "5",
"race": "Meles",
"image": {
"frame": "rare",
"model": "mellivora",
"background": "meles"
},
"scarcity": "Rare",
"primary": "#ffffff",
"extra": "#f2a52b",
"stats": {
"radar": 85,
"drill": 250,
"machinery": 85
}
},
"35": {
"name": "Leucurus",
"description": "The Leucurus is based around an updated Unobtanium reactor that provides double the power of an Anakuma-class ship, allowing greater cargo capacity and crew space. In addition to long range mining sensors, it has a separate subsystem for tracking the sweet, golden Mana that the Mele prize for nutrition and enjoyment. In fact, some Leucurus are used as Mele party ships that travel the galaxy in search of Mana while ignoring mining opportunities — which is why other miners always hail a Leucurus to see if a party is in progress.",
"collection": "badger",
"background_color": "f3f2f3",
"external_url": "",
"supply": "5",
"race": "Meles",
"image": {
"frame": "rare",
"model": "leucurus",
"background": "meles"
},
"scarcity": "Rare",
"primary": "#ffffff",
"extra": "#f2a52b",
"stats": {
"radar": 115,
"drill": 190,
"machinery": 115
}
},
"36": {
"name": "Capensis",
"description": "This brave race of badgers escaped the mad king spadaboom to planet HONEYINMUHBELLY. By grace, they managed to find a golden substance they referred to as “mana”. This single substance was packed with nutrients dense enough to meet all the Meles bodies needs. This is the mythic ship the famous core team escaped on so many years ago.",
"collection": "badger",
"background_color": "f3f2f3",
"external_url": "",
"supply": "1",
"race": "Meles",
"image": {
"frame": "mythic",
"model": "capensis",
"background": "meles"
},
"scarcity": "Mythic",
"primary": "#ffffff",
"extra": "#f2a52b",
"invariant": true,
"stats": {
"radar": 140,
"drill": 240,
"machinery": 160
}
},
"37": {
"name": "Croissant",
"description": "Both the past and the future of France is a reliable staple, fresh from the oven. An old but reliable design, has been around longer than anyone can remember. This common traveller spreads delight in all corners of the universe, it ion engine exhaust smells like butter. Often fakes surrender by lowering it's shields, but Upon boarding the invader often gets burned.",
"collection": "alchemix",
"background_color": "f3f2f3",
"external_url": "",
"supply": "50",
"race": "Wizards",
"image": {
"frame": "uncommon",
"model": "croissant",
"background": "wizards"
},
"scarcity": "Uncommon",
"primary": "#178EC2",
"extra": "#F5C09A",
"stats": {
"radar": 120,
"drill": 140,
"machinery": 80
}
},
"38": {
"name": "Friendmaker",
"description": "<blockquote>Speed and determination,<br/>strike with haste.</blockquote><br/>Born from Earth's anti-gravity racing leagues, the Friendmaker is a high speed single pilot ship that's capable of both on- and off-planet travel. It's slim body makes it the perfect interceptor and scouting unit. Just be prepared to get addicted to the rush of super phantom speed.",
"collection": "alchemix",
"background_color": "f3f2f3",
"external_url": "",
"supply": "5",
"race": "Wizards",
"image": {
"frame": "rare",
"model": "friendmaker",
"background": "wizards"
},
"scarcity": "Rare",
"primary": "#178EC2",
"extra": "#F5C09A",
"stats": {
"radar": 130,
"drill": 115,
"machinery": 175
}
},
"39": {
"name": "Space Crab",
"description": "Regular winner due to it's unique ability to drift sideways. Dominating the moons of Jupiter Grand Race Circuit 8 Sols in a row, The Space Crab has made a name for itself as first in class ship that can handle any environment with grace. It has become a favorite of racing enthusiasts and the Space Police Force for its sense of agility, speed, and control.",
"collection": "alchemix",
"background_color": "f3f2f3",
"external_url": "",
"supply": "5",
"race": "Wizards",
"image": {
"frame": "rare",
"model": "spacecrab",
"background": "wizards"
},
"scarcity": "Rare",
"primary": "#178EC2",
"extra": "#F5C09A",
"stats": {
"radar": 100,
"drill": 250,
"machinery": 70
}
},
"40": {
"name": "Liberator",
"description": "The design and underlying tech for this ship has been lost in the depths of time, but it has the unique ability to clone itself - provided sufficient energy can be concentrated in the one place for the task. Opportunities for this are exceedingly rare however, so the number of these ships in existence is very low. With 'Standard by 12' speeds, cloaking while shielded, and an onboard oracle that can see roughly 3 minutes into the future, it is a highly desirable asset indeed!",
"collection": "alchemix",
"background_color": "f3f2f3",
"external_url": "",
"supply": "1",
"race": "Wizards",
"image": {
"frame": "mythic",
"model": "liberator",
"background": "wizards"
},
"invariant": true,
"scarcity": "Mythic",
"primary": "#178EC2",
"extra": "#F5C09A",
"stats": {
"radar": 380,
"drill": 220,
"machinery": -60
}
},
"41": {
"name": "Arbitrator",
"description": "The Arbitrator benefits from its clever scale-like design enabling it to both mine space rocks at a decent speed and directly weigh the resources mined. Though it is limited in its mining range, it hosts a full autonomous court able to condemn any asteroid plunderer in its path",
"collection": "Kleros",
"background_color": "f3f2f3",
"external_url": "",
"supply": "25",
"race": "Kleroterion",
"image": {
"frame": "uncommon",
"model": "arbitrator",
"background": "kleroterion"
},
"scarcity": "Uncommon",
"primary": "#4D00B4",
"extra": "#67E5FF",
"stats": {
"radar": 100,
"drill": 120,
"machinery": 120
}
},
"42": {
"name": "Pinakion",
"description": "The Pinakion ring-shaped living quarters are where most of the “Juror” class members of the Kleroterions spend their lives while waiting to be drawn in cases. As some time can flow between cases, their manpower is used for mining in-between jury duty.",
"collection": "Kleros",
"background_color": "f3f2f3",
"external_url": "",
"supply": "5",
"race": "Kleroterion",
"image": {
"frame": "rare",
"model": "pinakion",
"background": "kleroterion"
},
"scarcity": "Rare",
"primary": "#4D00B4",
"extra": "#67E5FF",
"stats": {
"radar": 130,
"drill": 130,
"machinery": 160
}
},
"43": {
"name": "Justitia",
"description": "Also called “The Supreme Court Ship”, the Justitia is where all the most precious minerals are extracted and stored. Whether you are a nugget of platinum or an interstellar DeFi hacker, you will end up on this ship to be processed in the name of greater justice.",
"collection": "Kleros",
"background_color": "f3f2f3",
"external_url": "",
"supply": "5",
"race": "Kleroterion",
"image": {
"frame": "rare",
"model": "justitia",
"background": "kleroterion"
},
"scarcity": "Rare",
"primary": "#4D00B4",
"extra": "#67E5FF",
"stats": {
"radar": 100,
"drill": 160,
"machinery": 160
}
},
"44": {
"name": "Truthstar",
"description": "As ultimate enforcer of all rulings made by the Kleroterion emporium, the Truthstar packs heavy drilling able to destroy a diamond-filled comet or a non-compliant planet in one go. Also called “The Sword of Justice” by the comets fearing its wrath, the Truthstar has been the main driver of both Kleroterion expansion and its hunger for resources.",
"collection": "Kleros",
"background_color": "f3f2f3",
"external_url": "",
"supply": "1",
"race": "Kleroterion",
"image": {
"frame": "mythic",
"model": "truthstar",
"background": "kleroterion"
},
"scarcity": "Mythic",
"primary": "#4D00B4",
"extra": "#67E5FF",
"stats": {
"radar": 140,
"drill": 220,
"machinery": 180
},
"invariant": true
},
"45": {
"name": "Konpeito",
"description": "These tiny raiders are not seen as a substantial threat towards most targets on its own, however as their number grows, so does the the collective firepower. It was said the total of Konpeito in existence could rival the number of stars itself. Despite being the most common of the ships within the Doki fleet, they are still extremely important units utilized daily by the Lunarellan people. Unlike the other ships, the Konpeito have been created to be fully AI-operated. Konpeito candies was final gift Azuki had given Doki when the time comes for farewells, and memory of its tart sweetness soothed the sadness of that memory. Doki certainly has a certain fondness for Konpeito ships. It was a reminder of their promise to meet again once more. It was undoubtedly something she wanted to remember for sure.",
"collection": "Doki Doki",
"background_color": "f3f2f3",
"external_url": "",
"supply": "300",
"race": "Lunarella",
"image": {
"frame": "common",
"model": "konpeito",
"background": "lunarella"
},
"scarcity": "Common",
"primary": "#ffffff",
"extra": "#ff97c3",
"stats": {
"radar": 110,
"drill": 120,
"machinery": 70
}
},