-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfallout.json
2064 lines (2064 loc) · 57.3 KB
/
fallout.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
[
{
"name": "Iron Fist",
"rank": 1,
"attribute": "Strength",
"attributeLevel": 1,
"characterLevel": false,
"description": "Channel your chi to unleash devastating fury! Punching attacks do 20% more damage to your opponent.",
"id": "0001DAFE"
},
{
"name": false,
"rank": 2,
"attribute": "Strength",
"attributeLevel": 1,
"characterLevel": 9,
"description": "Punching attacks now do 40% more damage and can disarm your opponent.",
"id": "0001DAFF"
},
{
"name": false,
"rank": 3,
"attribute": "Strength",
"attributeLevel": 1,
"characterLevel": 18,
"description": "Punching attacks now do 60% more damage. Unarmed Power Attacks have a chance to cripple one of your opponent's limbs.",
"id": "0001DB00"
},
{
"name": false,
"rank": 4,
"attribute": "Strength",
"attributeLevel": 1,
"characterLevel": 31,
"description": "Punching attacks now do 80% more damage. Unarmed Power Attacks have an increased chance to cripple one of your opponent's limbs.",
"id": "00065E42"
},
{
"name": false,
"rank": 5,
"attribute": "Strength",
"attributeLevel": 1,
"characterLevel": 46,
"description": "Punching attacks now do double damage. Criticals in V.A.T.S. will paralyze your opponent.",
"id": "00065E43"
},
{
"name": "Big Leagues",
"rank": 1,
"attribute": "Strength",
"attributeLevel": 2,
"characteLevel": false,
"description": "Swing for the fences! Do 20% more melee weapon damage.",
"id": "0004A0B5"
},
{
"name": false,
"rank": 2,
"attribute": "Strength",
"attributeLevel": 2,
"characterLevel": 7,
"description": "You now do 40% more melee weapon damage and gain a chance to disarm your opponent.",
"id": "000E36FC"
},
{
"name": false,
"rank": 3,
"attribute": "Strength",
"attributeLevel": 2,
"characterLevel": 15,
"description": "You now do 60% more melee weapon damage and gain an increased chance to disarm your opponent.",
"id": "000E36FD"
},
{
"name": false,
"rank": 4,
"attribute": "Strength",
"attributeLevel": 2,
"characterLevel": 27,
"description": "You now do 80% more melee weapon damage and hit all targets in front of you.",
"id": "000E36FE"
},
{
"name": false,
"rank": 5,
"attribute": "Strength",
"attributeLevel": 2,
"characterLevel": 42,
"description": "You now do double damage with a melee weapon, and gain a chance to cripple your opponent, or grand slam their head clean off!",
"id": "00065E05"
},
{
"name": "Armorer",
"rank": 1,
"attribute": "Strength",
"attributeLevel": 3,
"characteLevel": false,
"description": "Protect yourself from the dangers of the Wasteland with access to base level and Rank 1 armor mods.",
"id": "0004B254"
},
{
"name": false,
"rank": 2,
"attribute": "Strength",
"attributeLevel": 3,
"characterLevel": 13,
"description": "You gain access to Rank 2 armor mods",
"id": "0004B255"
},
{
"name": false,
"rank": 3,
"attribute": "Strength",
"attributeLevel": 3,
"characterLevel": 25,
"description": "You gain access to Rank 3 armor mods",
"id": "0004B256"
},
{
"name": false,
"rank": 4,
"attribute": "Strength",
"attributeLevel": 3,
"characterLevel": 39,
"description": "You gain access to Rank 4 armor mods",
"id": "001797EA"
},
{
"name": "Blacksmith",
"rank": 1,
"attribute": "Strength",
"attributeLevel": 4,
"characteLevel": false,
"description": "Fire up the forge and gain access to base level and Rank 1 melee weapon mods.",
"id": "0004B253"
},
{
"name": false,
"rank": 2,
"attribute": "Strength",
"attributeLevel": 4,
"characterLevel": 16,
"description": "You gain access to Rank 2 melee weapon mods",
"id": "0004B26A"
},
{
"name": false,
"rank": 3,
"attribute": "Strength",
"attributeLevel": 4,
"characterLevel": 29,
"description": "You gain access to Rank 3 melee weapon mods",
"id": "000264D8"
},
{
"name": "Heavy Gunner",
"rank": 1,
"attribute": "Strength",
"attributeLevel": 5,
"characterLevel": false,
"description": "Thanks to practice and conditioning, heavy guns do 20% more damage.",
"id": "0004A0D6"
},
{
"name": false,
"rank": 2,
"attribute": "Strength",
"attributeLevel": 5,
"characterLevel": 11,
"description": "Heavy guns now do 40% more damage, and have improved hip fire accuracy.",
"id": "0004A0D7"
},
{
"name": false,
"rank": 3,
"attribute": "Strength",
"attributeLevel": 5,
"characterLevel": 21,
"description": "Heavy guns now do 60% more damage. Hip fire accuracy is increased even more.",
"id": "0004A0D8"
},
{
"name": false,
"rank": 4,
"attribute": "Strength",
"attributeLevel": 5,
"characterLevel": 35,
"description": "Heavy guns now do 80% more damage and have a chance to stagger your opponent.",
"id": "00065E2A"
},
{
"name": false,
"rank": 5,
"attribute": "Strength",
"attributeLevel": 5,
"characterLevel": 47,
"description": "Heavy guns now do double damage.",
"id": "00065E2B"
},
{
"name": "Strong Back",
"rank": 1,
"attribute": "Strength",
"attributeLevel": 6,
"characterLevel": false,
"description": "What are you, part pack mule? Gain +25 to carry weight",
"id": "0004B24E"
},
{
"name": false,
"rank": 2,
"attribute": "Strength",
"attributeLevel": 6,
"characterLevel": 10,
"description": "You now have +50 to carry weight.",
"id": "00065E5B"
},
{
"name": false,
"rank": 3,
"attribute": "Strength",
"attributeLevel": 6,
"characterLevel": 20,
"description": "When overencumbered, you can use Action Points to run.",
"id": "00065E5C"
},
{
"name": false,
"rank": 4,
"attribute": "Strength",
"attributeLevel": 6,
"characterLevel": 30,
"description": "When overencumbered, you can fast travel.",
"id": "001D2489"
},
{
"name": "Steady Aim",
"rank": 1,
"attribute": "Strength",
"attributeLevel": 7,
"characteLevel": false,
"description": "Stay on target! Hip-fire accuracy is improved when firing any gun.",
"id": "001D2487"
},
{
"name": false,
"rank": 2,
"attribute": "Strength",
"attributeLevel": 7,
"characterLevel": 28,
"description": "Hip-fire accuracy is improved even more when firing any gun.",
"id": "001D2488"
},
{
"name": "Basher",
"rank": 1,
"attribute": "Strength",
"attributeLevel": 8,
"characteLevel": false,
"description": "Get up close and personal! Gun bashing does 25% more damage.",
"id": "00065DF9"
},
{
"name": false,
"rank": 2,
"attribute": "Strength",
"attributeLevel": 8,
"characterLevel": 5,
"description": "Gun bashing now does 50% more damage and possibly cripples your opponent.",
"id": "00065DFA"
},
{
"name": false,
"rank": 3,
"attribute": "Strength",
"attributeLevel": 8,
"characterLevel": 14,
"description": "Gun bashing now does 75% more damage and has an increased chance to cripple your opponent.",
"id": "00065DFB"
},
{
"name": false,
"rank": 4,
"attribute": "Strength",
"attributeLevel": 8,
"characterLevel": 26,
"description": "Gun bashing does double damage and has an increased chance to cripple your opponent. It may also inflict a Critical Hit.",
"id": "00065DFC"
},
{
"name": "Rooted",
"rank": 1,
"attribute": "Strength",
"attributeLevel": 9,
"characteLevel": false,
"description": "You're part tree! While standing still, you gain +25 Damage Resistance and your melee and unarmed attacks deal 25% more damage.",
"id": "001D247F"
},
{
"name": false,
"rank": 2,
"attribute": "Strength",
"attributeLevel": 9,
"characterLevel": 22,
"description": "While standing still, you now gain +50 Damage Resistance and your melee and unarmed attacks deal 50% more damage.",
"id": "001D2480"
},
{
"name": false,
"rank": 3,
"attribute": "Strength",
"attributeLevel": 9,
"characterLevel": 43,
"description": "While standing still, you may automatically disarm enemies that use melee weapons against you.",
"id": "001D2482"
},
{
"name": "Pain Train",
"rank": 1,
"attribute": "Strength",
"attributeLevel": 10,
"characteLevel": false,
"description": "Choo Choo! All aboard! While wearing Power Armor,sprinting into enemies hurts and staggers them. (Robots and oversized enemies are immune to the stagger.) ",
"id": "0004D89B"
},
{
"name": false,
"rank": 2,
"attribute": "Strength",
"attributeLevel": 10,
"characterLevel": 24,
"description": "Sprinting into enemies while wearing Power Armor now causes severe damage and a more powerful stagger. (Robots and oversized enemies are immune to the stagger.)",
"id": "00065E3C"
},
{
"name": false,
"rank": 3,
"attribute": "Strength",
"attributeLevel": 10,
"characterLevel": 50,
"description": "Sprinting into enemies while wearing Power Armor now causes massive damage and knocks them down. Impact landing near enemies inflicts even more damage.",
"id": "00065E3D"
},
{
"name": "Pickpocket",
"rank": 1,
"attribute": "Perception",
"attributeLevel": 1,
"characterLevel": false,
"description": "Your quick hands and sticky fingers make picking pockets 25% easier.",
"id": "0004D88A"
},
{
"name": false,
"rank": 2,
"attribute": "Perception",
"attributeLevel": 1,
"characterLevel": 6,
"description": "Picking pockets is now 50% easier. You can place a live grenade in a person's inventory.",
"id": "000E3702"
},
{
"name": false,
"rank": 3,
"attribute": "Perception",
"attributeLevel": 1,
"characterLevel": 17,
"description": "Picking pockets is now 75% easier, and you can steal equipped weapons.",
"id": "000E3703"
},
{
"name": false,
"rank": 4,
"attribute": "Perception",
"attributeLevel": 1,
"characterLevel": 30,
"description": "Picking pockets is now twice as easy, and you can steal equipped items.",
"id": "001D248F"
},
{
"name": "Rifleman",
"rank": 1,
"attribute": "Perception",
"attributeLevel": 2,
"characteLevel": false,
"description": "Keep your distance long and your kill-count high. Attacks with non-automatic rifles do 20% more damage",
"id": "0004A0B6"
},
{
"name": false,
"rank": 2,
"attribute": "Perception",
"attributeLevel": 2,
"characterLevel": 9,
"description": "Attacks with non-automatic rifles do 40% more damage and ignore 15% of a target's armor.",
"id": "0004A0B7"
},
{
"name": false,
"rank": 3,
"attribute": "Perception",
"attributeLevel": 2,
"characterLevel": 18,
"description": "Attacks with non-automatic rifles do 60% more damage and ignore 20% of a target's armor.",
"id": "0004A0B8"
},
{
"name": false,
"rank": 4,
"attribute": "Perception",
"attributeLevel": 2,
"characterLevel": 31,
"description": "Attacks with non-automatic rifles do 80% more damage and ignore 25% of a target's armor. They also have a slight chance of crippling a limb.",
"id": "0006FA20"
},
{
"name": false,
"rank": 5,
"attribute": "Perception",
"attributeLevel": 2,
"characterLevel": 46,
"description": "Attacks with non-automatic rifles do double damage and ignore 30% of a target's armor. They also have a slightly higher chance of crippling a limb.",
"id": "00065E52"
},
{
"name": "Awareness",
"rank": 1,
"attribute": "Perception",
"attributeLevel": 3,
"characteLevel": false,
"description": "To defeat your enemies, know their weaknesses! You can view a target's specific damage resistances in V.A.T.S.",
"id": "000D2287"
},
{
"name": "Locksmith",
"rank": 1,
"attribute": "Perception",
"attributeLevel": 4,
"characteLevel": false,
"description": "Your nimble fingers allow you to pick advanced locks.",
"id": "000523FF"
},
{
"name": false,
"rank": 2,
"attribute": "Perception",
"attributeLevel": 4,
"characterLevel": 7,
"description": "You can pick Expert locks.",
"id": "00052400"
},
{
"name": false,
"rank": 3,
"attribute": "Perception",
"attributeLevel": 4,
"characterLevel": 18,
"description": "You can pick Master locks.",
"id": "00052401"
},
{
"name": false,
"rank": 4,
"attribute": "Perception",
"attributeLevel": 4,
"characterLevel": 41,
"description": "Your bobby pins never break during lockpicking.",
"id": "001D246A"
},
{
"name": "Demolition Expert",
"rank": 1,
"attribute": "Perception",
"attributeLevel": 5,
"characteLevel": false,
"description": "The bigger the boom, the better! Your explosives do 25% more damage, and you can craft explosives at any Chemistry Station. ",
"id": "0004C923"
},
{
"name": false,
"rank": 2,
"attribute": "Perception",
"attributeLevel": 5,
"characterLevel": 10,
"description": "Your explosives do 50% more damage, and grenades gain a throwing arc.",
"id": "0004C924"
},
{
"name": false,
"rank": 3,
"attribute": "Perception",
"attributeLevel": 5,
"characterLevel": 22,
"description": "Your explosives do 75% more damage and affect a larger area.",
"id": "0004C925"
},
{
"name": false,
"rank": 4,
"attribute": "Perception",
"attributeLevel": 5,
"characterLevel": 34,
"description": "Your explosives now do double damage. Mines and grenades shot in V.A.T.S explode for double damage, too.",
"id": "00065E13"
},
{
"name": "Night Person (perk)|Night Person",
"rank": 1,
"attribute": "Perception",
"attributeLevel": 6,
"characteLevel": false,
"description": "You are a creature of the night! Gain +2 to Intelligence and Perception between the hours of 6:00 p.m. and 6:00 a.m. ",
"id": "0004C93B"
},
{
"name": false,
"rank": 2,
"attribute": "Perception",
"attributeLevel": 6,
"characterLevel": 25,
"description": "You now have +3 to Intelligence and Perception between the hours of 6:00 p.m. and 6:00 a.m., and night vision when sneaking.",
"id": "001D2495"
},
{
"name": "Refractor",
"rank": 1,
"attribute": "Perception",
"attributeLevel": 7,
"characteLevel": false,
"description": "You must be part mirror! Instantly gain +10 Energy Resistance.",
"id": "000CA99D"
},
{
"name": false,
"rank": 2,
"attribute": "Perception",
"attributeLevel": 7,
"characterLevel": 11,
"description": "You now have +20 Energy Resistance.",
"id": "000CA99E"
},
{
"name": false,
"rank": 3,
"attribute": "Perception",
"attributeLevel": 7,
"characterLevel": 21,
"description": "You now have +30 Energy Resistance.",
"id": "000CA99F"
},
{
"name": false,
"rank": 4,
"attribute": "Perception",
"attributeLevel": 7,
"characterLevel": 35,
"description": "You now have +40 Energy Resistance.",
"id": "00065E4B"
},
{
"name": false,
"rank": 5,
"attribute": "Perception",
"attributeLevel": 7,
"characterLevel": 42,
"description": "You now have +50 Energy Resistance.",
"id": "00065E4C"
},
{
"name": "Sniper",
"rank": 1,
"attribute": "Perception",
"attributeLevel": 8,
"characterLevel": false,
"description": " It's all about focus. You have improved control and can hold your breath longer when aiming with scopes.",
"id": "0004C92A"
},
{
"name": false,
"rank": 2,
"attribute": "Perception",
"attributeLevel": 8,
"characterLevel": 13,
"description": " Non-automatic, scoped rifles have a chance of knocking down your target.",
"id": "0004C92B"
},
{
"name": false,
"rank": 3,
"attribute": "Perception",
"attributeLevel": 8,
"characterLevel": 26,
"description": " Non-automatic, scoped rifles gain +25% accuracy to head shot in V.A.T.S.",
"id": "0004C92C"
},
{
"name": "Penetrator",
"rank": 1,
"attribute": "Perception",
"attributeLevel": 9,
"characteLevel": false,
"description": "There's no place to hide! In V.A.T.S you can target an enemy's body parts that are blocked by cover, with a decrease in accuracy.",
"id": "00024AFF"
},
{
"name": false,
"rank": 2,
"attribute": "Perception",
"attributeLevel": 9,
"characterLevel": 28,
"description": "In V.A.T.S when you target an enemy's body parts that are blocked by cover, there is no decrease in accuracy.",
"id": "001D2477"
},
{
"name": "Concentrated Fire",
"rank": 1,
"attribute": "Perception",
"attributeLevel": 10,
"characteLevel": false,
"description": "Stay Focused! In V.A.T.S every attack on the same body part gains +10% accuracy.",
"id": "0004D890"
},
{
"name": false,
"rank": 2,
"attribute": "Perception",
"attributeLevel": 10,
"characterLevel": 26,
"description": "In V.A.T.S every attack on the same body part gains +15% accuracy.",
"id": "001D2459"
},
{
"name": false,
"rank": 3,
"attribute": "Perception",
"attributeLevel": 10,
"characterLevel": 50,
"description": "In V.A.T.S every attack on the same body part gains +20% accuracy and does 20% more damage.",
"id": "001D245A"
},
{
"name": "Toughness",
"rank": 1,
"attribute": "Endurance",
"attributeLevel": 1,
"characterLevel": false,
"description": "If nothing else, you can take a beating! Instantly gain +10 Damage Resistance",
"id": "0004A0AB"
},
{
"name": false,
"rank": 2,
"attribute": "Endurance",
"attributeLevel": 1,
"characterLevel": 9,
"description": "You now have +20 damage resistance.",
"id": "0004A0AE"
},
{
"name": false,
"rank": 3,
"attribute": "Endurance",
"attributeLevel": 1,
"characterLevel": 18,
"description": "You now have +30 damage resistance.",
"id": "0004A0AF"
},
{
"name": false,
"rank": 4,
"attribute": "Endurance",
"attributeLevel": 1,
"characterLevel": 31,
"description": "You now have +40 damage resistance.",
"id": "00065E5D"
},
{
"name": false,
"rank": 5,
"attribute": "Endurance",
"attributeLevel": 1,
"characterLevel": 46,
"description": "You now have +50 damage resistance.",
"id": "00065E5E"
},
{
"name": "Lead Belly",
"rank": 1,
"attribute": "Endurance",
"attributeLevel": 2,
"characterLevel": false,
"description": "Your digestive tract has adjusted to the weirdness of the Wasteland! Take less radiation from eating or drinking.",
"id": "0004A0B9"
},
{
"name": false,
"rank": 2,
"attribute": "Endurance",
"attributeLevel": 2,
"characterLevel": 6,
"description": "You take even less radiation from eating or drinking.",
"id": "00024B00"
},
{
"name": false,
"rank": 3,
"attribute": "Endurance",
"attributeLevel": 2,
"characterLevel": 17,
"description": "You take no radiation from eating or drinking.",
"id": "00024B01"
},
{
"name": "Lifegiver",
"rank": 1,
"attribute": "Endurance",
"attributeLevel": 3,
"characterLevel": false,
"description": "You embody wellness! Instantly gain +20 maximum Health.",
"id": "0004A0CF"
},
{
"name": false,
"rank": 2,
"attribute": "Endurance",
"attributeLevel": 3,
"characterLevel": 8,
"description": "You instantly gain another +20 maximum Health.",
"id": "001D2465"
},
{
"name": false,
"rank": 3,
"attribute": "Endurance",
"attributeLevel": 3,
"characterLevel": 20,
"description": "You instantly gain another +20 maximum Health, and slowly regenerate lost Health.",
"id": "001D2467"
},
{
"name": "Chem Resistant (perk)|Chem Resistant",
"rank": 1,
"attribute": "Endurance",
"attributeLevel": 4,
"characterLevel": false,
"description": "All the rush without the hassle! You're 50% less likely to get addicted when consuming Chems",
"id": "0004A0D5"
},
{
"name": false,
"rank": 2,
"attribute": "Endurance",
"attributeLevel": 4,
"characterLevel": 22,
"description": "You gain complete immunity to chem addiction.",
"id": "00065E0C"
},
{
"name": "Aquaboy",
"rank": 1,
"attribute": "Endurance",
"attributeLevel": 5,
"characterLevel": false,
"description": "Water is your ally. You no longer take radiation damage from swimming, and can breathe underwater ",
"id": "000E36F9"
},
{
"name": false,
"rank": 2,
"attribute": "Endurance",
"attributeLevel": 5,
"characterLevel": 21,
"description": "You become totally undetectable while submerged.",
"id": "001D248D"
},
{
"name": "Rad Resistant",
"rank": 1,
"attribute": "Endurance",
"attributeLevel": 6,
"characteLevel": false,
"description": "Exposure to the Wasteland has made you more resilient, instantly granting +10 Radiation Resistance.",
"id": "001D2479"
},
{
"name": false,
"rank": 2,
"attribute": "Endurance",
"attributeLevel": 6,
"characterLevel": 13,
"description": "You now have +20 Radiation Resistance.",
"id": "001D247A"
},
{
"name": false,
"rank": 3,
"attribute": "Endurance",
"attributeLevel": 6,
"characterLevel": 26,
"description": "You now have +30 Radiation Resistance.",
"id": "001D247B"
},
{
"name": "Adamantium Skeleton",
"rank": 1,
"attribute": "Endurance",
"attributeLevel": 7,
"characteLevel": false,
"description": "Your skeleton has been infused with indestructible metal, reducing limb damage by 30%.",
"id": "0004C92D"
},
{
"name": false,
"rank": 2,
"attribute": "Endurance",
"attributeLevel": 7,
"characterLevel": 13,
"description": "Your limb damage is now reduced by 60%.",
"id": "00024AFD"
},
{
"name": false,
"rank": 3,
"attribute": "Endurance",
"attributeLevel": 7,
"characterLevel": 26,
"description": "Your limb damage is completely eliminated.",
"id": "00024AFE"
},
{
"name": "Cannibal",
"rank": 1,
"attribute": "Endurance",
"attributeLevel": 8,
"characteLevel": false,
"description": "Feast on mortal flesh to heal your wounds! Eating human corpses restores Health.",
"id": "0004B259"
},
{
"name": false,
"rank": 2,
"attribute": "Endurance",
"attributeLevel": 8,
"characterLevel": 19,
"description": "Eating Ghoul or Super Mutant corpses restores Health.",
"id": "001D1A62"
},
{
"name": false,
"rank": 3,
"attribute": "Endurance",
"attributeLevel": 8,
"characterLevel": 38,
"description": "Eating human, Ghoul or Super Mutant corpses now restores a significant amount of Health.",
"id": "001D1A63"
},
{
"name": "Ghoulish",
"rank": 1,
"attribute": "Endurance",
"attributeLevel": 9,
"characteLevel": false,
"description": "Sure, you're still human - on the outside! Radiation now regenerates your lost Health.",
"id": "0004D89E"
},
{
"name": false,
"rank": 2,
"attribute": "Endurance",
"attributeLevel": 9,
"characterLevel": 24,
"description": "Radiation now regenerates even more of your lost Health.",
"id": "00065E22"
},
{
"name": false,
"rank": 3,
"attribute": "Endurance",
"attributeLevel": 9,
"characterLevel": 48,
"description": "Radiation now regenerates even more of your lost Health, and some Feral Ghouls will randomly become friendly.",
"id": "00065E23"
},
{
"name": "Solar Powered",
"rank": 1,
"attribute": "Endurance",
"attributeLevel": 10,
"characteLevel": false,
"description": "Catch some rays! Gain +2 to Strength and Endurance between the hours of 6:00a.m. and 6:00p.m.",
"id": "0004D8A7"
},
{
"name": false,
"rank": 2,
"attribute": "Endurance",
"attributeLevel": 10,
"characterLevel": 27,
"description": "Sunlight slowly heals your radiation damage.",
"id": "001D2484"
},
{
"name": false,
"rank": 3,
"attribute": "Endurance",
"attributeLevel": 10,
"characterLevel": 50,
"description": "Sunlight slowly regenerates your lost Health.",
"id": "001D2485"
},
{
"name": "Cap Collector",
"rank": 1,
"attribute": "Charisma",
"attributeLevel": 1,
"characterLevel": false,
"description": "You've mastered the art of the deal! Buying and selling prices at vendors are better.",
"id": "001D2456"
},
{
"name": false,
"rank": 2,
"attribute": "Charisma",
"attributeLevel": 1,
"characterLevel": 20,
"description": "Buying and selling prices of vendors are now much better.",
"id": "000D75E2"
},
{
"name": false,
"rank": 3,
"attribute": "Charisma",
"attributeLevel": 1,
"characterLevel": 41,
"description": "You can now invest a total of 500 caps to raise a store's buying capacity.",
"id": "001D2457"
},
{
"name": "Lady Killer]] / [[Black Widow",
"rank": 1,
"attribute": "Charisma",
"attributeLevel": 2,
"characteLevel": false,
"description": "You're charming... and dangerous. Men/Women suffer +5% damage in combat, and are easier to persuade in dialogue.",
"id": "00019AA3}}<br/>{{ID|0004A0D4"
},
{
"name": false,
"rank": 2,
"attribute": "Charisma",
"attributeLevel": 2,
"characterLevel": 7,
"description": "Men/Women now suffer +10% damage in combat, and are even easier to persuade in dialogue. They are also easier to pacify with the intimidation perk.",
"id": "00065E33}}<br/>{{ID|00065E31"
},
{
"name": false,
"rank": 3,
"attribute": "Charisma",
"attributeLevel": 2,
"characterLevel": 16,
"description": "Men/Women now suffer +15% damage in combat, and are much easier to persuade in dialogue. They are now even easier to pacify with the Intimidation perk.",
"id": "00065E34}}<br/>{{ID|00065E32"
},
{
"name": "Lone Wanderer (perk)|Lone Wanderer",
"rank": 1,
"attribute": "Charisma",
"attributeLevel": 3,
"characteLevel": false,
"description": "Who needs friends, anyway? When adventuring without a companion, you take 15% less damage and carry weight increases by 50.",
"id": "001D246B"
},
{
"name": false,
"rank": 2,
"attribute": "Charisma",
"attributeLevel": 3,
"characterLevel": 17,
"description": "When adventuring without a companion, you take 20% less damage and carry weight increases by 100",
"id": "001D246D"
},
{
"name": false,
"rank": 3,
"attribute": "Charisma",
"attributeLevel": 3,
"characterLevel": 40,
"description": "When adventuring without a companion, you do 25% more damage.",
"id": "001D246E"
},
{
"name": "Attack Dog",
"rank": 1,
"attribute": "Charisma",
"attributeLevel": 4,
"characteLevel": false,
"description": "Your faithful canine companion can hold an enemy, giving you a greater chance to hit them in V.A.T.S.",
"id": "0004B26D"
},