forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathset_one.json
1506 lines (1506 loc) · 52.9 KB
/
set_one.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
{
"templates": [
{
"template": "default",
"icon": "icons/runtime/tcg/default.dmi",
"series": "coreset2020"
}
],
"cards": [
{
"id": "AI",
"name": "AI",
"desc": "The latest generation of NT's top secret artificial intelligence project, this time with actual human brains in a jar! Don't tell the press though.",
"rules": "Asimov",
"icon_state": "ai",
"power": "3",
"resolve": "6",
"faction": "Science",
"summoncost": "5",
"cardtype": "Creature",
"cardsubtype": "Silicon",
"rarity": "uncommon"
},
{
"id": "stickman",
"name": "Angry Stickman",
"desc": "Sure, he's flat and crudely drawn, but watch out! He's a menace!",
"rules": "On summon: If another 'Angry Stickman' card has been destroyed, you may summon it for at double cost. This ability may be activated only once per turn.",
"icon_state": "angry_stickman",
"power": "1",
"resolve": "1",
"faction": "Xeno",
"summoncost": "1",
"cardtype": "Creature",
"cardsubtype": "Construct",
"rarity": "uncommon"
},
{
"id": "changeling",
"name": "Armoured Changeling",
"desc": "The strange creatures known as changelings have been known to develop natural armour as a defense mechanism when in combat.",
"rules": "Changeling",
"icon_state": "armored_changeling",
"power": "2",
"resolve": "8",
"faction": "Syndicate",
"summoncost": "6",
"cardtype": "Creature",
"cardsubtype": "Abomination",
"rarity": "rare"
},
{
"id": "assistant",
"name": "Staff Assistant",
"desc": "The lowest ladder on the Nanotrasen Employment Ladder, Staff Assistants are employed to help out with tasks deemed 'too menial for robots'.",
"rules": "Greytide, for every card with 'Greytide', this card has +1/+1 on the field.",
"icon_state": "assistant",
"power": "1",
"resolve": "1",
"faction": "Service",
"summoncost": "1",
"cardtype": "Creature",
"cardsubtype": "Human Employee",
"rarity": "common"
},
{
"id": "atmos_tech",
"name": "Atmospheric Technician",
"desc": "The Atmospheric Technicians are tasked with keeping the station's air clean, breathable, and, most importantly, devoid of plasma.",
"rules": "On Summon: Search your deck for an Atmospherics Battlefield card, and add it to your hand. Shuffle your deck afterward.",
"icon_state": "atmos_tech",
"power": "2",
"resolve": "3",
"faction": "Engineering",
"summoncost": "4",
"cardtype": "Creature",
"cardsubtype": "Human Engineer",
"rarity": "common"
},
{
"id": "bartender",
"name": "Bartender",
"desc": "Prior to the introduction of on-station psychologists, the Bartender served to alleviate many employees' woes and fears. Remember, always drink responsibly.",
"rules": "",
"icon_state": "bartender",
"power": "3",
"resolve": "2",
"faction": "Service",
"summoncost": "3",
"cardtype": "Creature",
"cardsubtype": "Human Employee",
"rarity": "common"
},
{
"id": "botanist",
"name": "Botanist",
"desc": "The Botanist is in charge of keeping the station's food supply happy, healthy, and preferably not laced with hallucinogens.",
"rules": "",
"icon_state": "botanist",
"power": "1",
"resolve": "4",
"faction": "Service",
"summoncost": "1",
"cardtype": "Creature",
"cardsubtype": "Human Employee",
"rarity": "common"
},
{
"id": "captain",
"name": "Captain",
"desc": "Every Captain is expected to lay down their life for their assigned station. Any Captain who returns to Centcom alive without permission is ceremonially executed before being cloned and stripped of rank.",
"rules": "Tap this card: inflict -1/-1 to an opposing creature card.",
"icon_state": "captain",
"power": "5",
"resolve": "5",
"faction": "Command",
"summoncost": "7",
"cardtype": "Creature",
"cardsubtype": "Human Commander",
"rarity": "rare"
},
{
"id": "caps_suit",
"name": "Apadyne Technologies Mk.2 R.I.O.T. Suit (Captain's Version)",
"desc": "A heavily customised Apadyne Technologies Mk.2 R.I.O.T. Suit, rebuilt and refitted to Nanotrasen's highest standards for issue to Station Captains.",
"rules": "On equip: tap the equipped card for 2 turns, without triggering the target card's effects.",
"icon_state": "captain_hardsuit",
"power": "-1",
"resolve": "5",
"faction": "Command",
"summoncost": "3",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "epic"
},
{
"id": "cargo_tech",
"name": "Cargo Technician",
"desc": "The grunts of Cargo. Any reports that Cargo Technicians are frequently overcome by revolutionary fervour are exaggerated.",
"rules": "Once per turn, you may give 'Cargo Technician' -1/0 until the start of your next turn and gain 1 mana.",
"icon_state": "cargo_tech",
"power": "3",
"resolve": "1",
"faction": "Cargo",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Human Employee",
"rarity": "common"
},
{
"id": "chap_plate",
"name": "Crusader Armour",
"desc": "The common war attire of chaplains. Mostly ceremonial.",
"rules": "Holy",
"icon_state": "chaplain_crusader",
"power": "2",
"resolve": "2",
"faction": "Service",
"summoncost": "2",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "common"
},
{
"id": "chemist",
"name": "Chemist",
"desc": "Chemists are encouraged to not set up illicit methamphetamine factories on the company's dime.",
"rules": "Tap this card: flip a coin. If heads: a friendly Medical Faction card gains 0/+2. If tails, an opponents creature of your choice gains +2/0.",
"icon_state": "chemist",
"power": "0",
"resolve": "3",
"faction": "Medical",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Human Doctor",
"rarity": "common"
},
{
"id": "CE",
"name": "Chief Engineer",
"desc": "The Chief Engineer is in charge of keeping the station powered and intact.",
"rules": "If a battlefield card would otherwise be destroyed by an opponent's card effect, you may sacrifice an Engineering faction card of yours in play to negate the battlefield's destruction.",
"icon_state": "ce",
"power": "3",
"resolve": "6",
"faction": "Engineering",
"summoncost": "5",
"cardtype": "Creature",
"cardsubtype": "Human Engineer",
"rarity": "uncommon"
},
{
"id": "ce_suit",
"name": "Nakamura Engineering R.I.G.Suit (Advanced)",
"desc": "An updated version of Nakamura Engineering's R.I.G.Suit, fitted with advanced radiation shielding and extra armour.",
"rules": "Tap this card: tap the equipped creature. The equipped creature avoids the effects of the active battlefield until removed from the field.",
"icon_state": "ce_hardsuit",
"power": "0",
"resolve": "3",
"faction": "Engineering",
"summoncost": "3",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "rare"
},
{
"id": "CMO",
"name": "Chief Medical Officer",
"desc": "Head of the medical department, the CMO is expected to maintain the standards of his underlings.",
"rules": "If a Medical faction card on your side of the field would gain power or resolve from an event, equipment, or card effect, it gains +1 more.",
"icon_state": "cmo",
"power": "4",
"resolve": "5",
"faction": "Medical",
"summoncost": "5",
"cardtype": "Creature",
"cardsubtype": "Human Doctor",
"rarity": "common"
},
{
"id": "cmo_suit",
"name": "DeForest Medical Corporation 'Lifesaver' Carapace",
"desc": "An advanced voidsuit designed for emergency medical personnel. Features include a built-in medical HUD and advanced medical gauntlets.",
"rules": "Tap this card: tap the equipped creature and re-equip 'DeForest Medical Corporation 'Lifesaver' Carapace' on a different creature on your side of the field. This effect may be activated once per turn.",
"icon_state": "cmo_hardsuit",
"power": "1",
"resolve": "3",
"faction": "Medical",
"summoncost": "3",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "uncommon"
},
{
"id": "chrono",
"name": "Chrono Legionnaire",
"desc": "Currently in the earliest stages of development, the Chrono Legionnaire project is expected to weaponise time itself.",
"rules": "If this card is destroyed or discarded, flip 3 coins. If the result has 2 or more heads, add this card back to your hand. Otherwise, send it to your graveyard.",
"icon_state": "chrono_legionnaire",
"power": "6",
"resolve": "2",
"faction": "Security",
"summoncost": "4",
"cardtype": "Creature",
"cardsubtype": "Human Soldier",
"rarity": "epic"
},
{
"id": "sloth",
"name": "Citrus",
"desc": "Cargo's happy sloth pal. Known for his cute sweater and always getting in the way.",
"rules": "Tap this card: Tap an opponent's card until the start of your next turn",
"icon_state": "citrus",
"power": "0",
"resolve": "3",
"faction": "Cargo",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Sloth",
"rarity": "common"
},
{
"id": "clown",
"name": "Clown",
"desc": "Every Nanotrasen station has a clown on board, as high command believes that a source of entertainment will reduce instances of murder-suicide on board Spinward Stations. The results of this hypothesis are, as of yet, unproven.",
"rules": "Taunt",
"icon_state": "clown",
"power": "2",
"resolve": "4",
"faction": "Service",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Clown",
"rarity": "common"
},
{
"id": "clownborg",
"name": "Cyborg (Clown Shell)",
"desc": "The clown shell is a new development in cyborg technology, designed to capture the joyous hijinks of the station clown in a notably more macabre and disturbing fashion.",
"rules": "Taunt, Asimov",
"icon_state": "borg_clown",
"power": "2",
"resolve": "4",
"faction": "Service",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Silicon Clown",
"rarity": "uncommon"
},
{
"id": "clown_suit",
"name": "HONK Ltd. Entertainment Voidsuit",
"desc": "The most advanced clown suit produced by HONK Ltd. the Entertainment Voidsuit is designed to withstand extreme conditions while still maintaining the aesthetic expected of clowns.",
"rules": "On Equip: give the equipped unit Taunt.",
"icon_state": "clown_hardsuit",
"power": "0",
"resolve": "0",
"faction": "Service",
"summoncost": "1",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "epic"
},
{
"id": "abductor_armour",
"name": "Abductor Combat Armour",
"desc": "Recovered from the strange alien species known as the Abductors, this armour is made from an extremely tough yet flexible material that has been dubbed as Alien Alloy by researchers.",
"rules": "On Equip: give the equipped unit Effect Immunity and Spell Immunity.",
"icon_state": "abductor_combat",
"power": "1",
"resolve": "3",
"faction": "Syndicate",
"summoncost": "4",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "uncommon"
},
{
"id": "chef",
"name": "Cook",
"desc": "Every Nanotrasen chef is trained in 3 cuisines of their choosing upon being hired, alongside the closely guarded secret of Close Quarters Cooking.",
"rules": "First Strike",
"icon_state": "cook",
"power": "3",
"resolve": "2",
"faction": "Service",
"summoncost": "3",
"cardtype": "Creature",
"cardsubtype": "Human Employee",
"rarity": "common"
},
{
"id": "wiz_suit",
"name": "Wizard Federation Standard Issue Hardsuit",
"desc": "Seemingly reverse engineered from captured engineering hardsuits, the iconic Wizard Federation Hardsuit is a spectacular melding of technology and magic.",
"rules": "On Equip: The equipped creature cannot attack targets with Holy.",
"icon_state": "wizard_hardsuit",
"power": "3",
"resolve": "1",
"faction": "Syndicate",
"summoncost": "1",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "rare"
},
{
"id": "curator",
"name": "Curator",
"desc": "In Nanotrasen polls, the Curator has ranked as the most pointless job on station, much to the ire of the Curator's union. Thankfully, we don't have to listen to them.",
"rules": "On Summon: Draw 1 card: if it's an event card, discard it.",
"icon_state": "curator",
"power": "1",
"resolve": "1",
"faction": "Service",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Human Worker",
"rarity": "common"
},
{
"id": "ianborg",
"name": "Borgi Ian",
"desc": "While Ian's cyborg costume is very convincing, we at the NTED would like to remind all employees that Ian has not been experimented on.",
"rules": "Asimov. You may sacrifice this card in play: Summon a Silicon type card from your hand worth up to double this card's cost.",
"icon_state": "ian_cyborg",
"power": "0",
"resolve": "3",
"faction": "Science",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Silicon Corgi",
"rarity": "rare"
},
{
"id": "deathsquad_armour",
"name": "Apadyne Technologies Mk.3 R.I.O.T. Carapace",
"desc": "The most advanced set of armour available for purchase from Apadyne Technologies, the Mk.3 R.I.O.T. Carapace is issued to Nanotrasen's most elite forces.",
"rules": "On Equip: if the equipped creature is of the Security faction, it gains Taunt.",
"icon_state": "deathsquad",
"power": "3",
"resolve": "3",
"faction": "Security",
"summoncost": "1",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "epic"
},
{
"id": "det",
"name": "Detective",
"desc": "Nanotrasen hires nothing but the best detectives to investigate crime on our stations. A penchant for cigarettes and outdated fashion isn't mandatory, but is appreciated.",
"rules": "Deadeye",
"icon_state": "detective",
"power": "3",
"resolve": "2",
"faction": "Security",
"summoncost": "5",
"cardtype": "Creature",
"cardsubtype": "Human Officer",
"rarity": "uncommon"
},
{
"id": "nukie_elite",
"name": "Elite Syndicate Nuclear Stormtrooper",
"desc": "The best of the best of the syndicate troops, elite stormtroopers can be distinguished by their black armour. Shoot on sight, ask questions later!",
"rules": "Fury",
"icon_state": "nukie_elite",
"power": "5",
"resolve": "5",
"faction": "Syndicate",
"summoncost": "7",
"cardtype": "Creature",
"cardsubtype": "Syndicate Soldier",
"rarity": "rare"
},
{
"id": "engiborg",
"name": "Cyborg (Engineering Shell)",
"desc": "A common sight on Nanotrasen Stations, Engineering Shells maintain critical station systems in hazardous conditions.",
"rules": "Asimov",
"icon_state": "borg_engi",
"power": "2",
"resolve": "2",
"faction": "Engineering",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Silicon",
"rarity": "common"
},
{
"id": "ert_command",
"name": "NT P.A.V. Suit (Command)",
"desc": "Issued to members of Emergency Response Teams, the P.A.V. Suit gives superior protection from any threat the galaxy can throw at it. This particular model is outfitted with a sidearm holster and a sleek blue finish.",
"rules": "While equipped, give the equipped unit Squad Tactics and First Strike.",
"icon_state": "ert_command",
"power": "2",
"resolve": "2",
"faction": "Command",
"summoncost": "2",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "rare"
},
{
"id": "ert_engi",
"name": "NT P.A.V. Suit (Engineering)",
"desc": "Issued to members of Emergency Response Teams, the P.A.V. Suit gives superior protection from any threat the galaxy can throw at it. This particular model is outfitted with a welding screen and a flashy yellow finish.",
"rules": "While equipped, give the equipped unit Squad Tactics.",
"icon_state": "ert_engi",
"power": "1",
"resolve": "1",
"faction": "Engineering",
"summoncost": "1",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "uncommon"
},
{
"id": "ert_med",
"name": "NT P.A.V. Suit (Medical)",
"desc": "Issued to members of Emergency Response Teams, the P.A.V. Suit gives superior protection from any threat the galaxy can throw at it. This particular model is outfitted with a sterile coating and a calming white finish.",
"rules": "While equipped, give the equipped unit Squad Tactics.",
"icon_state": "ert_med",
"power": "1",
"resolve": "2",
"faction": "Medical",
"summoncost": "2",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "uncommon"
},
{
"id": "ert_sec",
"name": "NT P.A.V. Suit (Security)",
"desc": "Issued to members of Emergency Response Teams, the P.A.V. Suit gives superior protection from any threat the galaxy can throw at it. This particular model is outfitted with bulletproof padding and an intimidating red finish.",
"rules": "While equipped, give the equipped unit Squad Tactics.",
"icon_state": "ert_sec",
"power": "2",
"resolve": "1",
"faction": "Security",
"summoncost": "2",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "uncommon"
},
{
"id": "explorer",
"name": "Explorer",
"desc": "The Nanotrasen Explorers Corps boldly goes where humanity has never gone before. Or would, if they weren't buried under mounds of bureaucracy.",
"rules": "You may tap this card: Flip a coin, if heads, gain 4 mana this turn, if tails, tap this card for 2 turns.",
"icon_state": "explorer",
"power": "2",
"resolve": "2",
"faction": "Cargo",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Human Explorer",
"rarity": "legendary"
},
{
"id": "borg",
"name": "Cyborg",
"desc": "Created as part of humanity's first foray into artificial intelligence, the original cyborg models used organic parts in lieu of sophisticated artificial brains.",
"rules": "Asimov",
"icon_state": "borg_generic",
"power": "3",
"resolve": "3",
"faction": "Science",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Silicon",
"rarity": "common"
},
{
"id": "geneticist",
"name": "Geneticist",
"desc": "Geneticists are tasked with manipulating human DNA to produce special effects. Nanotrasen maintains a strict 'no superhero' policy for mutations, following the Superhero Civil War of 2150.",
"rules": "You may tap this card and pay 3 mana: Give a friendly creature Hivemind until this card leaves the field.",
"icon_state": "geneticist",
"power": "3",
"resolve": "4",
"faction": "Science",
"summoncost": "3",
"cardtype": "Creature",
"cardsubtype": "Human Scientist",
"rarity": "common"
},
{
"id": "med_geneticist",
"name": "Geneticist",
"desc": "Geneticists are tasked with manipulating human DNA to produce special effects. Nanotrasen maintains a strict 'no superhero' policy for mutations, following the Superhero Civil War of 2150.",
"rules": "Graytide, Hivemind",
"icon_state": "geneticist_med",
"power": "3",
"resolve": "6",
"faction": "Medical",
"summoncost": "8",
"cardtype": "Creature",
"cardsubtype": "Human Doctor",
"rarity": "misprint"
},
{
"id": "spookian",
"name": "Ghost Ian",
"desc": "Oh my god! Ian's dead!",
"rules": "On Summon: Search your deck for a battlefield, and add it to your hand. Shuffle your deck afterwards.",
"icon_state": "ian_ghost",
"power": "1",
"resolve": "1",
"faction": "Service",
"summoncost": "3",
"cardtype": "Creature",
"cardsubtype": "Spirit Corgi",
"rarity": "epic"
},
{
"id": "HOP",
"name": "Head of Personnel",
"desc": "The head of the Cargo and Service Departments, guardian of all access, and Ian's lovable, yet dumb, sidekick.",
"rules": "Once per turn: Select a friendly creature card. That card gains changeling.",
"icon_state": "hop",
"power": "4",
"resolve": "3",
"faction": "Service",
"summoncost": "7",
"cardtype": "Creature",
"cardsubtype": "Human Commander",
"rarity": "uncommon"
},
{
"id": "HOS",
"name": "Head of Security",
"desc": "Nanotrasen hires most heads of staff based on their qualifications as being amicable, good at conflict resolution, ability to handle high-stakes situations, humanity, and desire to learn. Heads of Security only need a highschool degree.",
"rules": "On Summon: Select a card type. That card type now costs 1 extra mana to summon. This effect persists until Head of Security is removed from the battlefield.",
"icon_state": "hos",
"power": "4",
"resolve": "4",
"faction": "Security",
"summoncost": "7",
"cardtype": "Creature",
"cardsubtype": "Human Officer",
"rarity": "uncommon"
},
{
"id": "hos_suit",
"name": "Apadyne Technologies 'Tyrant' Class Hardshell",
"desc": "The distinctive shape of the Tyrant Class Hardshell is caused, in part, by the large amount of kevlar reinforcement and the ablative armour layer. Perhaps more importantly, it also looks rad.",
"rules": "Grant the equip card Fury until this card is removed from play.",
"icon_state": "hos_hardsuit",
"power": "4",
"resolve": "2",
"faction": "Security",
"summoncost": "5",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "rare"
},
{
"id": "ian",
"name": "Ian",
"desc": "This adorable corgi has become the defacto mascot of the Spinward Stations to many. He comes in many forms, many sizes, and many shapes, but he's still just as lovable. Hand wash only.",
"rules": "Holy, You may Sacrifice this card on the field: Play a Command card from your hand for free.",
"icon_state": "ian",
"power": "0",
"resolve": "3",
"faction": "Service",
"summoncost": "4",
"cardtype": "Creature",
"cardsubtype": "Corgi",
"rarity": "common"
},
{
"id": "inquisitor_suit",
"name": "Inquisitor's Hardsuit",
"desc": "Nanotrasen officially doesn't believe in ghosts, magic, or anything that can't be solved with science. When you see someone show up in one of these, let that remind you of that fact.",
"rules": "Apply First Strike to the equip creature.",
"icon_state": "inquisitor",
"power": "2",
"resolve": "2",
"faction": "Service",
"summoncost": "4",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "epic"
},
{
"id": "intern",
"name": "Intern",
"desc": "All Nanotrasen interns come with 3 things: A resume, a desire to learn, and vague promises that they're getting paid at some point. So don't be too rough on them.",
"rules": "First Strike",
"icon_state": "intern",
"power": "1",
"resolve": "1",
"faction": "Command",
"summoncost": "1",
"cardtype": "Human",
"cardsubtype": "Human Employee",
"rarity": "common"
},
{
"id": "jannie",
"name": "Janitor",
"desc": "A true testament to futility, they clean and they clean and they clean, knowing that there's no way they can clean it all. Yet, they perservere, knowing that without them, the crew would simply give in to their base animalistic nature.",
"rules": "Taunt",
"icon_state": "janitor",
"power": "1",
"resolve": "1",
"faction": "Service",
"summoncost": "1",
"cardtype": "Human",
"cardsubtype": "Human Employee",
"rarity": "common"
},
{
"id": "jannieborg",
"name": "Cyborg (Custodial Shell)",
"desc": "A powerful, state of the act cleaning machine. They exist to eradicate stains, snag garbage, and replace lights, forever. We are legally obligated by the Janitor's Union to state that these machines are no replacement for a flesh-and-blood janitor.",
"rules": "Asimov, you may tap this card: Tap an opponent's Human Creature as well.",
"icon_state": "borg_janitor",
"power": "1",
"resolve": "3",
"faction": "Service",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Silicon",
"rarity": "common"
},
{
"id": "lawyer",
"name": "Lawyer",
"desc": "Nanotrasen knows the value of a good lawyer. That's why they're all working hard at our home offices defending us from frivolous labor suits from lazy no-good employees who should be working hard instead of slacking off reading trading cards.",
"rules": "When an opponent attacks with a creature with 3 or more power, this card gains Taunt.",
"icon_state": "lawyer",
"power": "0",
"resolve": "4",
"faction": "Service",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Human Employee",
"rarity": "common"
},
{
"id": "legion",
"name": "Legion",
"desc": "They are the cursed, damned souls of civilizations born and lost in the flames of Indecipheres, conglomerated into a lump of emaciated bodies, wandering the realms they used to rule... or something along those lines, anyway.",
"rules": "When Legion is destroyed, search your deck for a human card, and summon it to the battlefield. Shuffle your deck afterward.",
"icon_state": "legion",
"power": "2",
"resolve": "1",
"faction": "Xeno",
"summoncost": "3",
"cardtype": "Creature",
"cardsubtype": "Abomination",
"rarity": "uncommon"
},
{
"id": "medborg",
"name": "Cyborg (Medical Shell)",
"desc": "A state of the art medical shell, for when biological life just can't take care of itself. Comes equipped with built-in surgical equipment and all the medicated lollipops you could ever want.",
"rules": "Asimov, you may tap this card and pay 2 mana: Reset a card's resolve to it's original value.",
"icon_state": "borg_medical",
"power": "2",
"resolve": "3",
"faction": "Medical",
"summoncost": "4",
"cardtype": "Creature",
"cardsubtype": "Silicon Doctor",
"rarity": "uncommon"
},
{
"id": "doc",
"name": "Medical Doctor",
"desc": "Nanotrasen's doctors are well known for their ability to treat almost any ailment known to mankind... as well as causing a fair few in the process.",
"rules": "You may tap this card: Select a card that has less attack than this card from your graveyard, and summon it to your side of the field.",
"icon_state": "md",
"power": "2",
"resolve": "3",
"faction": "Medical",
"summoncost": "3",
"cardtype": "Creature",
"cardsubtype": "Human Doctor",
"rarity": "common"
},
{
"id": "mime",
"name": "Mime",
"desc": "Si vous regardez attentivement dans les yeux d'un mime, vous pouvez voir le tourment sans fin derrière leur façade silencieuse. C'est vraiment tragique.",
"rules": "You may tap this card: Pick an opponent's card and nullify it's effect until it leaves play.",
"icon_state": "mime",
"power": "2",
"resolve": "1",
"faction": "Service",
"summoncost": "1",
"cardtype": "Creature",
"cardsubtype": "Mime",
"rarity": "uncommon"
},
{
"id": "miningborg",
"name": "Cyborg (Mining Shell)",
"desc": "Fitted with a drill and tracks, the Mining Shell is designed to hold up to the rigours of mining, be that on the hellish surface of Indecipheres, or in the silent vacuum of the asteroid belt.",
"rules": "Asimov, at the end of your turn, if this card is not tapped, you may tap this card at the start of your next turn to gain 1 mana.",
"icon_state": "borg_miner",
"power": "3",
"resolve": "1",
"faction": "Cargo",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Silicon Miner",
"rarity": "common"
},
{
"id": "monkey",
"name": "Monkey",
"desc": "Nanotrasen seeks to phase out animal testing by 2570, in accordance with new TerraGov legislation. This will be replaced with more ethical solutions, such as computer simulations, or experimentation on Staff Assistants.",
"rules": "Greytide, this card is considered Human with a Geneticist on your side of the field.",
"icon_state": "monkey",
"power": "1",
"resolve": "1",
"faction": "Science",
"summoncost": "1",
"cardtype": "Creature",
"cardsubtype": "Primate",
"rarity": "common"
},
{
"id": "nukeop",
"name": "Nuclear Operative",
"desc": "The frontline grunts of the syndicate army, Nuclear Operatives are typically well trained and equipped for their grim duty.",
"rules": "Squad Tactics",
"icon_state": "nukie_red",
"power": "4",
"resolve": "2",
"faction": "Syndicate",
"summoncost": "4",
"cardtype": "Creature",
"cardsubtype": "Syndicate Soldier",
"rarity": "rare"
},
{
"id": "paramed",
"name": "Paramedic",
"desc": "Nanotrasen encourages all paramedics to think of others before themselves- if this means running through a plasma fire to save a colleague, so be it.",
"rules": "Taunt, First Strike",
"icon_state": "paramedic",
"power": "2",
"resolve": "3",
"faction": "Medical",
"summoncost": "3",
"cardtype": "Creature",
"cardsubtype": "Human Doctor",
"rarity": "common"
},
{
"id": "peaceborg",
"name": "Cyborg (Peacekeeper Shell)",
"desc": "After the unilateral phasing out of Security Shells in 2554 following mass reports of cyborg-on-human violence, the Peacekeeper Shell was introduced as a stopgap solution until the problems could be resolved.",
"rules": "Asimov, this card loses -1 power for every creature on your opponent's side of the field",
"icon_state": "borg_peace",
"power": "3",
"resolve": "3",
"faction": "Security",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Silicon Officer",
"rarity": "uncommon"
},
{
"id": "plasma_engi",
"name": "Station Engineer (Plasmaman)",
"desc": "The ever industrious plasmamen are well suited to engineering work, due to their natural radiation resistance.",
"rules": "Immunity to Battlefields",
"icon_state": "engi_plasma",
"power": "2",
"resolve": "4",
"faction": "Engineering",
"summoncost": "5",
"cardtype": "Creature",
"cardsubtype": "Plasmaman Engineer",
"rarity": "common"
},
{
"id": "QM",
"name": "Quartermaster",
"desc": "Every Nanotrasen station has a Quartermaster, who controls the flow of cargo to and from the station, and by extension to and from the hands of the crew. He's not given the distinction of being a head, though. His job isn't hard enough.",
"rules": "Pay 3 mana and tap this card: All card cards on your side of the field gain +1/+1 until the end of this turn.",
"icon_state": "qm",
"power": "3",
"resolve": "3",
"faction": "Cargo",
"summoncost": "6",
"cardtype": "Creature",
"cardsubtype": "Human Employee",
"rarity": "uncommon"
},
{
"id": "qm_head",
"name": "Quartermaster",
"desc": "Every Nanotrasen station has a Quartermaster, who controls the flow of cargo to and from the station, and by extension to and from the hands of the crew.",
"rules": "Pay 8 mana and permanantly tap this card: All cargo cards on your side of the field gain +2/+2 until this card leaves play.",
"icon_state": "qm_head",
"power": "6",
"resolve": "6",
"faction": "Cargo",
"summoncost": "10",
"cardtype": "Creature",
"cardsubtype": "Human Employee",
"rarity": "misprint"
},
{
"id": "rabbit_pai",
"name": "Personal AI Device (Rabbit Shell)",
"desc": "Personal AI Devices are able to take the form of many household pets, to provide a homely sense of comfort and companionship to their owners.",
"rules": "This card may steal the Asimov keyword off of another friendly silicon creature.",
"icon_state": "pai_rabbit",
"power": "0",
"resolve": "1",
"faction": "Science",
"summoncost": "2",
"cardtype": "Creature",
"cardsubtype": "Silicon Rabbit",
"rarity": "common"
},
{
"id": "drone_pai",
"name": "Personal AI Device (Drone Shell)",
"desc": "The most basic Personal AI shell, the Drone Shell resembles the old maintainance drones used on Nanotrasen Stations prior to 'the incident', and is perfect for the tech-savvy AI-owner.",
"rules": "You may pay 1 mana and tap this card: a silicon card may attack one additional time this turn.",
"icon_state": "pai_drone",
"power": "2",
"resolve": "4",
"faction": "Science",
"summoncost": "5",
"cardtype": "Creature",
"cardsubtype": "Silicon Drone",
"rarity": "common"
},
{
"id": "RD",
"name": "Research Director",
"desc": "The Research Director is the head of the Science Division, and is responsible for, shockingly, directing research.",
"rules": "Once per turn, you may tap all Science faction cards in play, activate the effect of an event card twice.",
"icon_state": "rd",
"power": "2",
"resolve": "5",
"faction": "Science",
"summoncost": "7",
"cardtype": "Creature",
"cardsubtype": "Human Scientist",
"rarity": "uncommon"
},
{
"id": "rd_suit",
"name": "Nakamura Engineering B.O.M.B.Suit",
"desc": "The Nakamura Engineering B.O.M.B.Suit is an innovative combination of a R.I.G.Suit and a bomb suit, perfect for toxins research.",
"rules": "Reduces all battlefield damage to the equipped creature by 2.",
"icon_state": "rd_hardsuit",
"power": "0",
"resolve": "0",
"faction": "Science",
"summoncost": "1",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "rare"
},
{
"id": "roboticist",
"name": "Roboticist",
"desc": "The roboticist's work is as close as Nanotrasen legally allows its employees to come to necromancy.",
"rules": "If a Asimov card on your side of the field is destroyed, you may pay 2 mana and tap this card: Return that card to your hand.",
"icon_state": "roboticist",
"power": "2",
"resolve": "2",
"faction": "Science",
"summoncost": "3",
"cardtype": "Creature",
"cardsubtype": "Human Scientist",
"rarity": "uncommon"
},
{
"id": "runtime",
"name": "Runtime",
"desc": "Runtime is the CMO's personal feline companion, and is well known for her laziness. It's said that opening a tin of tuna anywhere on the station will bring her running.",
"rules": "You may sacrifice this card: reduce the cost of summoning a medical faction card this turn by 2 mana.",
"icon_state": "runtime",
"power": "0",
"resolve": "1",
"faction": "Medical",
"summoncost": "3",
"cardtype": "Creature",
"cardsubtype": "Cat",
"rarity": "uncommon"
},
{
"id": "scientist",
"name": "Scientist",
"desc": "Rumours that Nanotrasen hires 'mad scientists' are greatly exaggerated. Scientists are regularly screened to ensure that their insanity remains within acceptable limits.",
"rules": "When this card is targeted by an opponent's single target event, you gain 1 lifeshard.",
"icon_state": "scientist",
"power": "1",
"resolve": "2",
"faction": "Science",
"summoncost": "4",
"cardtype": "Creature",
"cardsubtype": "Human Scientist",
"rarity": "common"
},
{
"id": "secborg",
"name": "Cyborg (Security Shell)",
"desc": "Following an incident in 2554, the Security Cyborg Shell was unilaterally phased out and replaced by the Peacekeeper. Nonetheless, many units remain in service with various other organisations such as private militaries.",
"rules": "Asimov, when this card targets a human creature, deal 1 damage to it after the battle resolves.",
"icon_state": "borg_sec",
"power": "4",
"resolve": "2",
"faction": "Security",
"summoncost": "6",
"cardtype": "Creature",
"cardsubtype": "Silicon Officer",
"rarity": "epic"
},
{
"id": "sec_officer",
"name": "Security Officer",
"desc": "Nanotrasen would like to remind all employees to support their station security team; remember, the boys in red keep you safe!",
"rules": "Squad Tactics",
"icon_state": "sec",
"power": "2",
"resolve": "2",
"faction": "Security",
"summoncost": "3",
"cardtype": "Creature",
"cardsubtype": "Human Officer",
"rarity": "common"
},
{
"id": "ratvar_armor",
"name": "Ratvarian Clockwork Cuirass",
"desc": "Fashioned from paranormally reinforced brass, the Ratvar Cult's clockwork armour is as beautiful as it is heretical.",
"rules": "While equipped, give the equipped unit Clockwork.",
"icon_state": "clock_cultist",
"power": "2",
"resolve": "2",
"faction": "Syndicate",
"summoncost": "4",
"cardtype": "Equipment",
"cardsubtype": "Armour",
"rarity": "epic"
},
{
"id": "beercanborg",
"name": "Cyborg (Service Shell- Beercan)",
"desc": "Despite being based on the Medical Shell, this particular Service Shell is tasked with destroying livers, rather than healing them.",
"rules": "Asimov, you may discard this card: draw one Service Faction card from your deck, then shuffle.",
"icon_state": "borg_serv_can",
"power": "1",
"resolve": "1",
"faction": "Service",
"summoncost": "1",
"cardtype": "Creature",