-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfragments.scarabs.txt
1200 lines (1200 loc) · 24.3 KB
/
fragments.scarabs.txt
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
{
"Divination Scarab of Completion": [
{
"Name": "Divination Scarab of Completion",
"BaseType": "Divination Scarab of Completion",
"Aspects": [
"Handled",
"PreventHiding"
]
}
],
"Reliquary Scarab of Vision": [
{
"Name": "Reliquary Scarab of Vision",
"BaseType": "Reliquary Scarab of Vision",
"Aspects": [
"Handled",
"PreventHiding"
]
}
],
"Horned Scarab of Preservation": [
{
"Name": "Horned Scarab of Preservation",
"BaseType": "Horned Scarab of Preservation",
"Aspects": [
"Handled",
"PreventHiding"
]
}
],
"Horned Scarab of Bloodlines": [
{
"Name": "Horned Scarab of Bloodlines",
"BaseType": "Horned Scarab of Bloodlines",
"Aspects": [
"Handled",
"PreventHiding"
]
}
],
"Divination Scarab of Curation": [
{
"Name": "Divination Scarab of Curation",
"BaseType": "Divination Scarab of Curation",
"Aspects": [
"Handled",
"PreventHiding"
]
}
],
"Breach Scarab of the Dreamer": [
{
"Name": "Breach Scarab of the Dreamer",
"BaseType": "Breach Scarab of the Dreamer",
"Aspects": [
"Handled"
]
}
],
"Bestiary Scarab of the Shadowed Crow": [
{
"Name": "Bestiary Scarab of the Shadowed Crow",
"BaseType": "Bestiary Scarab of the Shadowed Crow",
"Aspects": [
"Handled"
]
}
],
"Essence Scarab of Calcification": [
{
"Name": "Essence Scarab of Calcification",
"BaseType": "Essence Scarab of Calcification",
"Aspects": [
"Handled"
]
}
],
"Horned Scarab of Awakening": [
{
"Name": "Horned Scarab of Awakening",
"BaseType": "Horned Scarab of Awakening",
"Aspects": [
"Handled",
"PreventHiding"
]
}
],
"Harvest Scarab of Cornucopia": [
{
"Name": "Harvest Scarab of Cornucopia",
"BaseType": "Harvest Scarab of Cornucopia",
"Aspects": [
"Handled"
]
}
],
"Domination Scarab of Terrors": [
{
"Name": "Domination Scarab of Terrors",
"BaseType": "Domination Scarab of Terrors",
"Aspects": [
"Handled",
"PreventHiding"
]
}
],
"Ambush Scarab of Containment": [
{
"Name": "Ambush Scarab of Containment",
"BaseType": "Ambush Scarab of Containment",
"Aspects": [
"Handled",
"PreventHiding"
]
}
],
"Horned Scarab of Pandemonium": [
{
"Name": "Horned Scarab of Pandemonium",
"BaseType": "Horned Scarab of Pandemonium",
"Aspects": [
"Handled"
]
}
],
"Horned Scarab of Glittering": [
{
"Name": "Horned Scarab of Glittering",
"BaseType": "Horned Scarab of Glittering",
"Aspects": [
"Handled",
"PreventHiding"
]
}
],
"Horned Scarab of Nemeses": [
{
"Name": "Horned Scarab of Nemeses",
"BaseType": "Horned Scarab of Nemeses",
"Aspects": [
"Handled"
]
}
],
"Blight Scarab of Blooming": [
{
"Name": "Blight Scarab of Blooming",
"BaseType": "Blight Scarab of Blooming",
"Aspects": [
"Handled"
]
}
],
"Ultimatum Scarab of Catalysing": [
{
"Name": "Ultimatum Scarab of Catalysing",
"BaseType": "Ultimatum Scarab of Catalysing",
"Aspects": [
"Handled",
"PreventHiding"
]
}
],
"Horned Scarab of Tradition": [
{
"Name": "Horned Scarab of Tradition",
"BaseType": "Horned Scarab of Tradition",
"Aspects": [
"Handled"
]
}
],
"Breach Scarab of Snares": [
{
"Name": "Breach Scarab of Snares",
"BaseType": "Breach Scarab of Snares",
"Aspects": [
"Handled"
]
}
],
"Expedition Scarab of Archaeology": [
{
"Name": "Expedition Scarab of Archaeology",
"BaseType": "Expedition Scarab of Archaeology",
"Aspects": [
"Handled"
]
}
],
"Legion Scarab of Eternal Conflict": [
{
"Name": "Legion Scarab of Eternal Conflict",
"BaseType": "Legion Scarab of Eternal Conflict",
"Aspects": [
"Handled"
]
}
],
"Essence Scarab of Ascent": [
{
"Name": "Essence Scarab of Ascent",
"BaseType": "Essence Scarab of Ascent",
"Aspects": [
"Handled"
]
}
],
"Incursion Scarab of Timelines": [
{
"Name": "Incursion Scarab of Timelines",
"BaseType": "Incursion Scarab of Timelines",
"Aspects": [
"Handled"
]
}
],
"Domination Scarab of Teachings": [
{
"Name": "Domination Scarab of Teachings",
"BaseType": "Domination Scarab of Teachings",
"Aspects": [
"Handled"
]
}
],
"Bestiary Scarab of Duplicating": [
{
"Name": "Bestiary Scarab of Duplicating",
"BaseType": "Bestiary Scarab of Duplicating",
"Aspects": [
"Handled"
]
}
],
"Harvest Scarab of Doubling": [
{
"Name": "Harvest Scarab of Doubling",
"BaseType": "Harvest Scarab of Doubling",
"Aspects": [
"Handled"
]
}
],
"Ultimatum Scarab of Dueling": [
{
"Name": "Ultimatum Scarab of Dueling",
"BaseType": "Ultimatum Scarab of Dueling",
"Aspects": [
"Handled"
]
}
],
"Expedition Scarab of the Skald": [
{
"Name": "Expedition Scarab of the Skald",
"BaseType": "Expedition Scarab of the Skald",
"Aspects": [
"Handled"
]
}
],
"Influencing Scarab of Conversion": [
{
"Name": "Influencing Scarab of Conversion",
"BaseType": "Influencing Scarab of Conversion",
"Aspects": [
"Handled"
]
}
],
"Legion Scarab": [
{
"Name": "Legion Scarab",
"BaseType": "Legion Scarab",
"Aspects": [
"Handled"
]
}
],
"Ambush Scarab of Discernment": [
{
"Name": "Ambush Scarab of Discernment",
"BaseType": "Ambush Scarab of Discernment",
"Aspects": [
"Handled"
]
}
],
"Reliquary Scarab of Overlords": [
{
"Name": "Reliquary Scarab of Overlords",
"BaseType": "Reliquary Scarab of Overlords",
"Aspects": [
"Handled"
]
}
],
"Breach Scarab of Lordship": [
{
"Name": "Breach Scarab of Lordship",
"BaseType": "Breach Scarab of Lordship",
"Aspects": [
"Handled"
]
}
],
"Blight Scarab of Bounty": [
{
"Name": "Blight Scarab of Bounty",
"BaseType": "Blight Scarab of Bounty",
"Aspects": [
"Handled"
]
}
],
"Harbinger Scarab of Warhoards": [
{
"Name": "Harbinger Scarab of Warhoards",
"BaseType": "Harbinger Scarab of Warhoards",
"Aspects": [
"Handled"
]
}
],
"Scarab of Stability": [
{
"Name": "Scarab of Stability",
"BaseType": "Scarab of Stability",
"Aspects": [
"Handled"
]
}
],
"Ritual Scarab of Abundance": [
{
"Name": "Ritual Scarab of Abundance",
"BaseType": "Ritual Scarab of Abundance",
"Aspects": [
"Handled"
]
}
],
"Legion Scarab of Officers": [
{
"Name": "Legion Scarab of Officers",
"BaseType": "Legion Scarab of Officers",
"Aspects": [
"Handled"
]
}
],
"Cartography Scarab of Singularity": [
{
"Name": "Cartography Scarab of Singularity",
"BaseType": "Cartography Scarab of Singularity",
"Aspects": [
"Handled"
]
}
],
"Delirium Scarab of Neuroses": [
{
"Name": "Delirium Scarab of Neuroses",
"BaseType": "Delirium Scarab of Neuroses",
"Aspects": [
"Handled"
]
}
],
"Blight Scarab of Oils": [
{
"Name": "Blight Scarab of Oils",
"BaseType": "Blight Scarab of Oils",
"Aspects": [
"Handled"
]
}
],
"Bestiary Scarab of the Herd": [
{
"Name": "Bestiary Scarab of the Herd",
"BaseType": "Bestiary Scarab of the Herd",
"Aspects": [
"Handled"
]
}
],
"Cartography Scarab of Duplication": [
{
"Name": "Cartography Scarab of Duplication",
"BaseType": "Cartography Scarab of Duplication",
"Aspects": [
"Handled"
]
}
],
"Beyond Scarab of the Invasion": [
{
"Name": "Beyond Scarab of the Invasion",
"BaseType": "Beyond Scarab of the Invasion",
"Aspects": [
"Handled"
]
}
],
"Abyss Scarab of Edifice": [
{
"Name": "Abyss Scarab of Edifice",
"BaseType": "Abyss Scarab of Edifice",
"Aspects": [
"Handled"
]
}
],
"Expedition Scarab of Runefinding": [
{
"Name": "Expedition Scarab of Runefinding",
"BaseType": "Expedition Scarab of Runefinding",
"Aspects": [
"Handled"
]
}
],
"Harbinger Scarab of Regency": [
{
"Name": "Harbinger Scarab of Regency",
"BaseType": "Harbinger Scarab of Regency",
"Aspects": [
"Handled"
]
}
],
"Anarchy Scarab of Partnership": [
{
"Name": "Anarchy Scarab of Partnership",
"BaseType": "Anarchy Scarab of Partnership",
"Aspects": [
"Handled"
]
}
],
"Domination Scarab of Abnormality": [
{
"Name": "Domination Scarab of Abnormality",
"BaseType": "Domination Scarab of Abnormality",
"Aspects": [
"Handled"
]
}
],
"Beyond Scarab of Resurgence": [
{
"Name": "Beyond Scarab of Resurgence",
"BaseType": "Beyond Scarab of Resurgence",
"Aspects": [
"Handled"
]
}
],
"Beyond Scarab of Corruption": [
{
"Name": "Beyond Scarab of Corruption",
"BaseType": "Beyond Scarab of Corruption",
"Aspects": [
"Handled"
]
}
],
"Essence Scarab": [
{
"Name": "Essence Scarab",
"BaseType": "Essence Scarab",
"Aspects": [
"Handled"
]
}
],
"Betrayal Scarab of Intelligence": [
{
"Name": "Betrayal Scarab of Intelligence",
"BaseType": "Betrayal Scarab of Intelligence",
"Aspects": [
"Handled"
]
}
],
"Essence Scarab of Stability": [
{
"Name": "Essence Scarab of Stability",
"BaseType": "Essence Scarab of Stability",
"Aspects": [
"Handled"
]
}
],
"Legion Scarab of Command": [
{
"Name": "Legion Scarab of Command",
"BaseType": "Legion Scarab of Command",
"Aspects": [
"Handled"
]
}
],
"Cartography Scarab of Corruption": [
{
"Name": "Cartography Scarab of Corruption",
"BaseType": "Cartography Scarab of Corruption",
"Aspects": [
"Handled"
]
}
],
"Sulphite Scarab of Fumes": [
{
"Name": "Sulphite Scarab of Fumes",
"BaseType": "Sulphite Scarab of Fumes",
"Aspects": [
"Handled"
]
}
],
"Delirium Scarab of Mania": [
{
"Name": "Delirium Scarab of Mania",
"BaseType": "Delirium Scarab of Mania",
"Aspects": [
"Handled"
]
}
],
"Harbinger Scarab of Discernment": [
{
"Name": "Harbinger Scarab of Discernment",
"BaseType": "Harbinger Scarab of Discernment",
"Aspects": [
"Handled"
]
}
],
"Ambush Scarab": [
{
"Name": "Ambush Scarab",
"BaseType": "Ambush Scarab",
"Aspects": [
"Handled"
]
}
],
"Anarchy Scarab of Gigantification": [
{
"Name": "Anarchy Scarab of Gigantification",
"BaseType": "Anarchy Scarab of Gigantification",
"Aspects": [
"Handled"
]
}
],
"Scarab of Hunted Traitors": [
{
"Name": "Scarab of Hunted Traitors",
"BaseType": "Scarab of Hunted Traitors",
"Aspects": [
"Handled"
]
}
],
"Influencing Scarab of Hordes": [
{
"Name": "Influencing Scarab of Hordes",
"BaseType": "Influencing Scarab of Hordes",
"Aspects": [
"Handled"
]
}
],
"Cartography Scarab of Ascension": [
{
"Name": "Cartography Scarab of Ascension",
"BaseType": "Cartography Scarab of Ascension",
"Aspects": [
"Handled"
]
}
],
"Abyss Scarab of Emptiness": [
{
"Name": "Abyss Scarab of Emptiness",
"BaseType": "Abyss Scarab of Emptiness",
"Aspects": [
"Handled"
]
}
],
"Delirium Scarab of Delusions": [
{
"Name": "Delirium Scarab of Delusions",
"BaseType": "Delirium Scarab of Delusions",
"Aspects": [
"Handled"
]
}
],
"Ultimatum Scarab of Inscription": [
{
"Name": "Ultimatum Scarab of Inscription",
"BaseType": "Ultimatum Scarab of Inscription",
"Aspects": [
"Handled"
]
}
],
"Incursion Scarab of Champions": [
{
"Name": "Incursion Scarab of Champions",
"BaseType": "Incursion Scarab of Champions",
"Aspects": [
"Handled"
]
}
],
"Betrayal Scarab of Perpetuation": [
{
"Name": "Betrayal Scarab of Perpetuation",
"BaseType": "Betrayal Scarab of Perpetuation",
"Aspects": [
"Handled"
]
}
],
"Legion Scarab of The Sekhema": [
{
"Name": "Legion Scarab of The Sekhema",
"BaseType": "Legion Scarab of The Sekhema",
"Aspects": [
"Handled"
]
}
],
"Delirium Scarab of Paranoia": [
{
"Name": "Delirium Scarab of Paranoia",
"BaseType": "Delirium Scarab of Paranoia",
"Aspects": [
"Handled"
]
}
],
"Breach Scarab of Splintering": [
{
"Name": "Breach Scarab of Splintering",
"BaseType": "Breach Scarab of Splintering",
"Aspects": [
"Handled"
]
}
],
"Ambush Scarab of Hidden Compartments": [
{
"Name": "Ambush Scarab of Hidden Compartments",
"BaseType": "Ambush Scarab of Hidden Compartments",
"Aspects": [
"Handled"
]
}
],
"Anarchy Scarab": [
{
"Name": "Anarchy Scarab",
"BaseType": "Anarchy Scarab",
"Aspects": [
"Handled"
]
}
],
"Reliquary Scarab": [
{
"Name": "Reliquary Scarab",
"BaseType": "Reliquary Scarab",
"Aspects": [
"Handled"
]
}
],
"Scarab of Monstrous Lineage": [
{
"Name": "Scarab of Monstrous Lineage",
"BaseType": "Scarab of Monstrous Lineage",
"Aspects": [
"Handled"
]
}
],
"Sulphite Scarab": [
{
"Name": "Sulphite Scarab",
"BaseType": "Sulphite Scarab",
"Aspects": [
"Handled"
]
}
],
"Torment Scarab of Peculiarity": [
{
"Name": "Torment Scarab of Peculiarity",
"BaseType": "Torment Scarab of Peculiarity",
"Aspects": [
"Handled"
]
}
],
"Sulphite Scarab of Greed": [
{
"Name": "Sulphite Scarab of Greed",
"BaseType": "Sulphite Scarab of Greed",
"Aspects": [
"Handled"
]
}
],
"Harvest Scarab": [
{
"Name": "Harvest Scarab",
"BaseType": "Harvest Scarab",
"Aspects": [
"Handled"
]
}
],
"Ritual Scarab of Selectiveness": [
{
"Name": "Ritual Scarab of Selectiveness",
"BaseType": "Ritual Scarab of Selectiveness",
"Aspects": [
"Handled"
]
}
],
"Breach Scarab": [
{
"Name": "Breach Scarab",
"BaseType": "Breach Scarab",
"Aspects": [
"Handled"
]
}
],
"Ritual Scarab of Recognition": [
{
"Name": "Ritual Scarab of Recognition",
"BaseType": "Ritual Scarab of Recognition",
"Aspects": [
"Handled"
]
}
],
"Expedition Scarab of Verisium Powder": [
{
"Name": "Expedition Scarab of Verisium Powder",
"BaseType": "Expedition Scarab of Verisium Powder",
"Aspects": [
"Handled"
]
}
],
"Beyond Scarab": [
{
"Name": "Beyond Scarab",
"BaseType": "Beyond Scarab",
"Aspects": [
"Handled"
]
}
],
"Incursion Scarab": [
{
"Name": "Incursion Scarab",
"BaseType": "Incursion Scarab",
"Aspects": [
"Handled"
]
}
],
"Blight Scarab": [
{
"Name": "Blight Scarab",
"BaseType": "Blight Scarab",
"Aspects": [
"Handled"
]
}
],
"Incursion Scarab of Invasion": [
{
"Name": "Incursion Scarab of Invasion",
"BaseType": "Incursion Scarab of Invasion",
"Aspects": [
"Handled"
]
}
],
"Ultimatum Scarab": [
{
"Name": "Ultimatum Scarab",
"BaseType": "Ultimatum Scarab",
"Aspects": [
"Handled"
]
}
],
"Ambush Scarab of Potency": [
{
"Name": "Ambush Scarab of Potency",
"BaseType": "Ambush Scarab of Potency",
"Aspects": [
"Handled"
]
}
],
"Scarab of Adversaries": [
{
"Name": "Scarab of Adversaries",
"BaseType": "Scarab of Adversaries",
"Aspects": [
"Handled"
]
}
],
"Harbinger Scarab": [
{
"Name": "Harbinger Scarab",
"BaseType": "Harbinger Scarab",
"Aspects": [
"Handled"
]
}
],
"Abyss Scarab": [
{
"Name": "Abyss Scarab",
"BaseType": "Abyss Scarab",
"Aspects": [
"Handled"
]
}
],
"Delirium Scarab": [
{
"Name": "Delirium Scarab",
"BaseType": "Delirium Scarab",
"Aspects": [
"Handled"
]
}
],
"Torment Scarab": [
{
"Name": "Torment Scarab",
"BaseType": "Torment Scarab",
"Aspects": [
"Handled"
]
}
],
"Influencing Scarab of the Shaper": [
{
"Name": "Influencing Scarab of the Shaper",
"BaseType": "Influencing Scarab of the Shaper",
"Aspects": [
"Handled"
]
}
],
"Cartography Scarab": [
{
"Name": "Cartography Scarab",
"BaseType": "Cartography Scarab",
"Aspects": [
"Handled"
]
}
],
"Mysterious Scarab": [
{
"Name": "Mysterious Scarab",
"BaseType": "Mysterious Scarab",
"Aspects": [
"Handled"
]
}
],
"Abyss Scarab of Multitudes": [
{
"Name": "Abyss Scarab of Multitudes",
"BaseType": "Abyss Scarab of Multitudes",
"Aspects": [
"Handled"
]
}
],
"Ultimatum Scarab of Bribing": [
{
"Name": "Ultimatum Scarab of Bribing",
"BaseType": "Ultimatum Scarab of Bribing",
"Aspects": [
"Handled"
]
}
],
"Bestiary Scarab": [
{
"Name": "Bestiary Scarab",
"BaseType": "Bestiary Scarab",
"Aspects": [
"Handled"
]
}
],
"Divination Scarab": [
{
"Name": "Divination Scarab",
"BaseType": "Divination Scarab",
"Aspects": [
"Handled"
]
}
],
"Expedition Scarab": [
{
"Name": "Expedition Scarab",
"BaseType": "Expedition Scarab",
"Aspects": [
"Handled"
]
}
],
"Betrayal Scarab": [
{
"Name": "Betrayal Scarab",
"BaseType": "Betrayal Scarab",
"Aspects": [
"Handled"
]
}
],
"Domination Scarab": [
{
"Name": "Domination Scarab",
"BaseType": "Domination Scarab",
"Aspects": [
"Handled"
]
}
],
"Influencing Scarab of the Elder": [
{
"Name": "Influencing Scarab of the Elder",
"BaseType": "Influencing Scarab of the Elder",
"Aspects": [
"Handled"
]
}
],
"Beyond Scarab of Haemophilia": [
{
"Name": "Beyond Scarab of Haemophilia",
"BaseType": "Beyond Scarab of Haemophilia",
"Aspects": [
"Handled"
]
}
],
"Torment Scarab of Release": [
{
"Name": "Torment Scarab of Release",
"BaseType": "Torment Scarab of Release",
"Aspects": [
"Handled"
]
}
],
"Betrayal Scarab of Reinforcements": [
{
"Name": "Betrayal Scarab of Reinforcements",
"BaseType": "Betrayal Scarab of Reinforcements",
"Aspects": [
"Handled"
]
}
],
"Blight Scarab of Invigoration": [
{
"Name": "Blight Scarab of Invigoration",
"BaseType": "Blight Scarab of Invigoration",
"Aspects": [
"Handled"
]
}