-
Notifications
You must be signed in to change notification settings - Fork 0
/
skillData.json
1315 lines (1315 loc) · 37.9 KB
/
skillData.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
[
{
"id":"94",
"name":"AGENT Training",
"aliases":"agent training",
"description":"Every Field Agent's training is unique. (Assigns you one of the following random skills: 'Misdirection,', 'Follow,' 'Interrogate,' or 'Throw Under the Bus')",
"type":"Night",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"63",
"name":"Add Route",
"aliases":"add route",
"description":"Connects the selected computer to a random nearby node when possible. (Does not leave logs)",
"type":"Night",
"targets":"Node",
"Cooldown_in_days":"2",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"84",
"name":"Agent Scum",
"aliases":"agent scum",
"description":"Even though you are neutral, doxx attempts will show you as an AGENT.",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"43",
"name":"All In",
"aliases":"all in",
"description":"Become the Field Agent. (Permanently lose all Agent Leader skills - can only be used if the original Field Agent is out of play)",
"type":"Day",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"7",
"name":"Alter Logs",
"aliases":"alter logs",
"description":"Physically access and tamper with the log files of a target machine. (Immune to 'Denial of Service')",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"2",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"99",
"name":"Ambitious AGENT",
"aliases":"ambitious agent",
"description":"You are driven to become a very famous AGENT. This OPSEC is your chance: you will become Field Agent when both the original AGENT Leader and Field Agent are out of play.",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"14",
"name":"Arrest",
"aliases":"arrest",
"description":"Attempt to arrest the target. Your cover won't be blown in case of failure (except by nosy Journalists), as you will direct the operation from an undercover van.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"108",
"name":"Arrest Recording",
"aliases":"arrest recording",
"description":"Visit the target hideout and start recording. If AGENT comes knocking, you will take this opportunity for an instant article. ",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"58",
"name":"Ask The Right Question",
"aliases":"ask the right question",
"description":"Visit someone tonight to discuss the hack in person and learn how many nodes they have successfully hacked so far.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"3",
"Visits_target":"Yes",
"Occupies_target":"Yes",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"50",
"name":"Bait Law Enforcement",
"aliases":"bait law enforcement",
"description":"Send an anonymous tip to AGENTs about your target being a NETSEC member. Hopefully, they will think it came from a Bounty Hunter...",
"type":"Day",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"3",
"RNG_based_success":"No"
},
{
"id":"87",
"name":"Blabbermouth",
"aliases":"blabbermouth",
"description":"Journalists will gain an extra scoop from you. Every time you open your mouth, you unknowingly reveal something important. Amazing.",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"81",
"name":"Blackmailed Informant",
"aliases":"blackmailed informant",
"description":"The informant that's helping AGENT will relay you valuable intel when possible. They will also try to bribe an AGENT detective...",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"67",
"name":"Covert Broadcast",
"aliases":"covert broadcast",
"description":"You hold root access to the NETSEC operation: you can anonymously message everyone.",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"19",
"name":"Install CCTV Surveillance",
"aliases":"install cctv surveillance",
"description":"Install a CCTV system at the subject's location. Allows for CCTV surveillance as long as the target is alive and does not move their hideout. (Visits the target)",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"18",
"name":"Perform CCTV Surveillance",
"aliases":"perform cctv surveillance",
"description":"Keep tabs on a person tonight. You will know if they've been visited. (Requires you to successfully 'Install CCTV' first)",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"98",
"name":"CCTV Takeover",
"aliases":"cctv takeover",
"description":"Break and enter into the target's hideout. Obtain CCTV access, if the target is or was a CCTV specialist.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"73",
"name":"Citizen's Arrest",
"aliases":"citizen's arrest",
"description":"Attempt to arrest your target. Years spent in the force allow you to follow their protocol seamlessly: your cover will stay safe (from everyone but Journalists) if you fail.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"3",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"3",
"RNG_based_success":"No"
},
{
"id":"70",
"name":"Computer Forensics Background",
"aliases":"computer forensics background",
"description":"You don't know everything: you know enough for the job. (Assigns you one of the following random skills: 'Impersonate', 'Hack,' 'Harden,' or 'Denial of Service')",
"type":"Day",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"44",
"name":"Cover Checks Out",
"aliases":"cover checks out",
"description":"Your cover will hold for the first three days in the event of doxxing or death. (Appear as a NETSEC class to non-AGENTs)",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"106",
"name":"Cover Support",
"aliases":"cover support",
"description":"Call in all your department resources to maintain a NETSEC cover for the target operative, which will be doxxed as NETSEC this night.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"3",
"RNG_based_success":"No"
},
{
"id":"9",
"name":"Cover Your Tracks",
"aliases":"cover your tracks",
"description":"If they can't find you, they can't arrest you, right? You take extra precautions tonight, giving you a higher chance to avoid arrest.",
"type":"Night",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"Yes"
},
{
"id":"105",
"name":"CQC Expert",
"aliases":"cqc expert",
"description":"You have been trained in Close Quarter Combat: murder attempts are less likely to succeed against you.",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"72",
"name":"Crack Credentials",
"aliases":"crack credentials",
"description":"The Operation Leader is out of the picture - you can attempt to crack their credentials and assume their identity... if root was not transferred safely.",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"Yes"
},
{
"id":"17",
"name":"Create Hideout",
"aliases":"create hideout",
"description":"Create a new hideout for you to escape to. Better safe than sorry, right? (Adds 1 charge to 'Move Hideout')",
"type":"Day",
"targets":"None",
"Cooldown_in_days":"3",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"109",
"name":"Critical Thinking",
"aliases":"critical thinking",
"description":"Stay up all night studying your hacking mistakes. Each failed hack grants you a use of this skill, which permanently improves your hacking chance.",
"type":"Night",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"35",
"name":"Denial of Service",
"aliases":"denial of service",
"description":"Temporarily disable the node by flooding it with traffic. (Cannot be blocked by any other skill)",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"64",
"name":"Desperate Measures",
"aliases":"desperate measures",
"description":"Desperate times require desperate measures. Become an Improvised Hacker. (Usable from Day 4)",
"type":"Day",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"71",
"name":"Disorganized Murder",
"aliases":"disorganized murder",
"description":"Try murdering your target. You know it will be messy. (Available from Night 4)",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"Yes"
},
{
"id":"59",
"name":"Diversion",
"aliases":"diversion",
"description":"You are ready to act as a diversion while escorting someone. (You will be arrested instead of your target)",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"56",
"name":"Download Intel",
"aliases":"download intel",
"description":"Search for important data on a hacked machine. This secondary objective can put us at an advantage, if we're lucky.",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"23",
"name":"Doxx and Stalk",
"aliases":"doxx and stalk",
"description":"By doxxing and stalking the target, you'll gain intel about them. (Learn the faction of the target player)",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"28",
"name":"Dumpster Dive",
"aliases":"dumpster dive",
"description":"Check the dumpsters and trash bins for important information. (Decreases the difficulty of a random node when successful)",
"type":"Night",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"2",
"name":"Emergency Extraction",
"aliases":"emergency extraction",
"description":"Send a hired team to move a targeted operative to a safe hideout.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"3",
"RNG_based_success":"No"
},
{
"id":"61",
"name":"Escort",
"aliases":"escort",
"description":"Escort the target operative to a new hideout, protecting them from arrest and murder attempts. Murder attempts will provoke retaliation.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"Yes",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"76",
"name":"Expose Operation Leader",
"aliases":"expose operation leader",
"description":"The TV crew owes you one: send them and expose the target as the Operation Leader. (Gain an instant article if correct)",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"Yes",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"95",
"name":"Fake Escort",
"aliases":"fake escort",
"description":"Pose as an enforcer and escort your target to a new hideout. You will bail at any sign of danger, and won't actually protect your target. ",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"Yes",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"20",
"name":"Follow",
"aliases":"follow",
"description":"Follow the target and learn who they'll visit tonight.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"37",
"name":"Frame",
"aliases":"frame",
"description":"Visit and frame the target player so that they are exposed as a random NETSEC class if arrested or killed. (Framed status lasts the whole match)",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"3",
"RNG_based_success":"No"
},
{
"id":"85",
"name":"Receive Bribe",
"aliases":"receive bribe",
"description":"Someone is willing to pay for information. And you will gladly sell what you know. (Gain extra XP/credits at the end of the game, if you win)",
"type":"Day",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"6",
"name":"Grant Root Access",
"aliases":"grant root access",
"description":"Grant root access for the whole operation to a specific member. If you die or get arrested, that user will become the new Operation Leader.",
"type":"Day",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"1",
"name":"Hack Target",
"aliases":"hack target",
"description":"Try pwning the machine. The more people try to hack the same node, the more likely the capture. (Targets the node and leaves a log)",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"Yes"
},
{
"id":"52",
"name":"Harden Node",
"aliases":"harden node",
"description":"Apply security patches and stop unnecessary services to make the hack harder.",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"3",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"91",
"name":"High Priority Target",
"aliases":"high priority target",
"description":"This high-profile operative is wanted internationally. Bounty Hunters gain an additional bounty (+1) when contributing to this operative's arrest.",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"69",
"name":"Impartial Sabotage",
"aliases":"impartial sabotage",
"description":"Your ethics have been... questionable. Get a scoop by creating some drama and sabotaging this node. (Roll back node to a previous state, leaves connection log and fake logs. Lose arrest immunity.)",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"24",
"name":"Impersonate",
"aliases":"impersonate",
"description":"Impersonate your target by spoofing your outbound emails tonight. (Send emails using your target as the sender, excluding emails received by your target)",
"type":"Day",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"62",
"name":"Insider Knowledge",
"aliases":"insider knowledge",
"description":"Snoop around the office and learn the IP address of a valuable secondary target.",
"type":"Day",
"targets":"None",
"Cooldown_in_days":"2",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"96",
"name":"Insurance",
"aliases":"insurance",
"description":"You discovered the Operation Leader's identity and have asked a trusted friend to reveal it publicly in the event of your death.",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"42",
"name":"Informant",
"aliases":"informant",
"description":"Use an undercover contact to obtain information about the target. (Learn the target faction and class)",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"60",
"name":"Interrogate",
"aliases":"interrogate",
"description":"Tonight, sit down with your target for a... talk. Tomorrow you will be able to read their personal log.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"Yes",
"Maximum_uses":"3",
"RNG_based_success":"No"
},
{
"id":"21",
"name":"Probe Node",
"aliases":"probe node",
"description":"Investigate potential ways to take over the target node. (Makes the node easier to hack into)",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"55",
"name":"ISP Isolation",
"aliases":"isp isolation",
"description":"Use a warrant to force the ISP to disconnect the target operative from the internet for today. (Prevents network connections)",
"type":"Day",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"3",
"RNG_based_success":"No"
},
{
"id":"79",
"name":"Jam Network",
"aliases":"jam network",
"description":"Use a jammer to temporarily block all outbound connections from the target operative for today.",
"type":"Day",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"32",
"name":"Get Scoop",
"aliases":"get scoop",
"description":"Covertly interview your target so you can write an article later: you will get a scoop if the target player has the 'Person of Interest' or 'Blabbermouth' skill.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"Yes",
"Occupies_target":"Yes",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"33",
"name":"Write Article",
"aliases":"write article",
"description":"Write an article about the hack. (You need to get a scoop from a non-neutral player first)",
"type":"Night",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"92",
"name":"Keylogger Honeypot",
"aliases":"keylogger honeypot",
"description":"Configure this machine as a honeypot. An Inside Man will have no idea, and any keylogger used on it will instead make the machine harder to hack.",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"27",
"name":"Plant Keylogger",
"aliases":"plant keylogger",
"description":"Plant a keylogger on the target machine. Retrieving a keylogger will increase your hacking chances towards your target.",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"26",
"name":"Retrieve Keylogger",
"aliases":"retrieve keylogger",
"description":"Retrieve keylogger data, increasing your hacking chances on that machine.",
"type":"Night",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"22",
"name":"Log Analysis",
"aliases":"log analysis",
"description":"Cross-reference network logs to find suspicious data streams. (Clear access logs from entries that have been tampered with)",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"51",
"name":"Looking for an Old Friend",
"aliases":"looking for an old friend",
"description":"You remember the traitor's face very well. Let's get to work. (Lets you know if the target is the original Operation Leader)",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"3",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"12",
"name":"Midnight Meeting",
"aliases":"midnight meeting",
"description":"Meet with a target player tonight to discuss important matters. (Visit the target and occupies the player)",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"Yes",
"Occupies_target":"Yes",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"25",
"name":"Misdirection",
"aliases":"misdirection",
"description":"Occupy everyone that visits you tonight.",
"type":"Night",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"Yes",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"5",
"name":"Move Hideout",
"aliases":"move hideout",
"description":"Move to a safer hideout, making you safe from arrest, murder, and attempts to strike a deal... for tonight, at least.",
"type":"Night",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"90",
"name":"Murder Journalist",
"aliases":"murder journalist",
"description":"Muster all of your courage to kill a Journalist. Your family can't know about the mess you're in.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"102",
"name":"NETSEC Background",
"aliases":"netsec background",
"description":"You have hacked for NETSEC for many years. (Assigns you one of the following random skills: 'Denial of Service,', 'Impersonate,' or 'Wireshark')",
"type":"Day",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"100",
"name":"Network Insights",
"aliases":"network insights",
"description":"When hacking a node, you gain a hacking bonus for each other player connecting to the same node in the same turn.",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"49",
"name":"Not a Snitch",
"aliases":"not a snitch",
"description":"Snitches get stitches, so you'll never accept a plea deal - you'd rather go to jail. (Conversion immune)",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"34",
"name":"No Dirt on Me",
"aliases":"no dirt on me",
"description":"You infiltrated NETSEC via questionable connections but didn't actually commit any crime. AGENT has no power over you. (Immune to conversion and arrest unless framed)",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"103",
"name":"Obtain Evidence",
"aliases":"obtain evidence",
"description":"Break into the hideout of the target operative to collect incriminating evidence of their involvement in the hacking operation.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"Yes",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"101",
"name":"One Of Us",
"aliases":"one of us",
"description":"Doxx attempts will show you as NETSEC, even if you are a Neutral class.",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"88",
"name":"Person of Interest",
"aliases":"person of interest",
"description":"You are directly involved in the hack operation. Journalists will gain a scoop when using 'Get Scoop' on you.",
"type":"Passive",
"targets":"None",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"78",
"name":"Planned Raid",
"aliases":"planned raid",
"description":"Pose as a NETSEC Enforcer and escort the target to an AGENT-controlled 'safe house' - the target will be later arrested by the local police, not exposing you.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"0",
"Visits_target":"Yes",
"Occupies_target":"Yes",
"Maximum_uses":"3",
"RNG_based_success":"No"
},
{
"id":"45",
"name":"Plant Fake Information",
"aliases":"plant fake information",
"description":"Print and throw fake login information in the trash. (Prevents the success of 'Dumpster Diving' for tonight)",
"type":"Day",
"targets":"None",
"Cooldown_in_days":"2",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"No"
},
{
"id":"107",
"name":"Relay Connection",
"aliases":"relay connection",
"description":"Safely visit the target operative, from a distance, and establish a relay wireless connection, preventing the target from being disconnected.",
"type":"Day",
"targets":"Players",
"Cooldown_in_days":"2",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"74",
"name":"Review Connection Logs",
"aliases":"review connection logs",
"description":"Review today's connection logs to determine if the target's connection was cut off or tampered with today.",
"type":"Night",
"targets":"Players",
"Cooldown_in_days":"3",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"2",
"RNG_based_success":"No"
},
{
"id":"48",
"name":"Rollback",
"aliases":"rollback",
"description":"Resecure a pwned target machine as best as you can, adding fake logs in the process.",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"1",
"RNG_based_success":"No"
},
{
"id":"36",
"name":"Script Kiddie Attack",
"aliases":"script kiddie attack",
"description":"Try hacking the target by using a well-known and outdated exploit from a public database. VERY unlikely to succeed.",
"type":"Day",
"targets":"Node",
"Cooldown_in_days":"0",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",
"RNG_based_success":"Yes"
},
{
"id":"46",
"name":"Search for Keyloggers",
"aliases":"search for keyloggers",
"description":"Search for keyloggers at the target's building, and destroy them.",
"type":"Night",
"targets":"None",
"Cooldown_in_days":"2",
"Visits_target":"No",
"Occupies_target":"No",
"Maximum_uses":"unlimited",