forked from dissociativity/PKs_Rebalancing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pk_mutation_override.json
1598 lines (1598 loc) · 55.5 KB
/
pk_mutation_override.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
[
{
"type": "mutation",
"id": "FLEET",
"name": "Fleet-Footed",
"points": 2,
"description": "You can move more quickly than most, resulting in a 15% speed bonus on sure footing.",
"starting_trait": true,
"valid": false,
"category": [ "RAPTOR", "BEAST" ],
"metabolism_modifier": 0.05
},
{
"type": "mutation",
"id": "GOODHEARING",
"name": "Good Hearing",
"points": 1,
"description": "Your hearing is better than average, and you can hear distant sounds more easily.",
"starting_trait": true,
"valid": false,
"category": [ "BIRD", "ELFA", "FELINE" ]
},
{
"type": "mutation",
"id": "PARKOUR",
"name": "Parkour Expert",
"points": 2,
"description": "You're skilled at clearing obstacles; terrain like railings or counters are as easy for you to move on as solid ground.",
"starting_trait": true,
"valid": false,
"threshreq": [ "THRESH_FELINE" ],
"category": [ "FELINE" ]
},
{
"type": "mutation",
"id": "SQUEAMISH",
"name": "Squeamish",
"points": -1,
"description": "You can't even think about putting filthy clothes on yourself, especially from zombies' corpses. For being such a wuss, you get a 5% penalty to all hit points.",
"starting_trait": true,
"valid": false,
"category": [ "ALPHA", "ELFA" ],
"hp_modifier_secondary": -0.05
},
{
"type": "mutation",
"id": "GOODCARDIO",
"name": "Indefatigable",
"points": 2,
"description": "Whether due to exercise and good diet, or due to a natural propensity to physical endurance, you tire due to physical exertion much less readily than others. Your maximum stamina is 25% higher than usual.",
"starting_trait": true,
"valid": false,
"category": [ "CHIMERA", "RAPTOR" ],
"stamina_regen_modifier": 0.02
},
{
"type": "mutation",
"id": "QUICK",
"name": "Quick",
"points": 3,
"description": "You're just generally quick! You get a 10% bonus to action points.",
"starting_trait": true,
"valid": false,
"category": [ "FELINE" ],
"metabolism_modifier": 0.05
},
{
"type": "mutation",
"id": "OPTIMISTIC",
"name": "Optimist",
"points": 2,
"description": "Nothing gets you down! You savor the joys of life, ignore its hardships, and are generally happier than most people.",
"starting_trait": true,
"valid": false,
"category": [ "CATTLE" ]
},
{
"type": "mutation",
"id": "FASTHEALER",
"name": "Fast Healer",
"points": 2,
"description": "You heal faster when sleeping and will even recover small amount of HP when not sleeping. This change in body chemistry strains your metabolism.",
"starting_trait": true,
"category": [ "LIZARD" ],
"healing_awake": 0.2,
"healing_resting": 0.5,
"metabolism_modifier": 0.4,
"stamina_regen_modifier": 0.1
},
{
"type": "mutation",
"id": "LIGHTEATER",
"name": "Light Eater",
"points": 2,
"description": "Your metabolism is a little slower, and you require less food than most.",
"starting_trait": true,
"category": [ "LIZARD" ],
"metabolism_modifier": -0.333
},
{
"type": "mutation",
"id": "EASYSLEEPER",
"name": "Accomplished Sleeper",
"points": 1,
"description": "You have always been able to fall asleep easily, even when sleeping in less than ideal circumstances.",
"starting_trait": true,
"valid": false,
"category": [ "CHIMERA" ]
},
{
"type": "mutation",
"id": "PAINRESIST",
"name": "Pain Resistant",
"points": 2,
"description": "You have a high tolerance for pain.",
"starting_trait": true,
"valid": false,
"category": [ "CHIMERA" ]
},
{
"type": "mutation",
"id": "NIGHTVISION",
"name": "Night Vision",
"points": 2,
"description": "You possess natural night vision, and can see further in the dark than most. Activate to toggle NV-visible areas on or off.",
"starting_trait": true,
"category": [ "LIZARD" ],
"active": true,
"starts_active": true
},
{
"type": "mutation",
"id": "TOUGH_FEET",
"name": "Tough Feet",
"points": 1,
"description": "The bottoms of your feet are tough (feet: +1 bash, +1 cut) and you are accustomed to going barefoot. You receive no movement penalty for not wearing shoes and get a 5% bonus to all hit points.",
"starting_trait": true,
"valid": false,
"category": [ "CATTLE", "SLIME", "CHIMERA", "PLANT", "TROGLOBITE" ],
"armor": [ { "parts": [ "foot_l", "foot_r" ], "bash": 1, "cut": 1 } ],
"hp_modifier_secondary": 0.05
},
{
"type": "mutation",
"id": "TOUGH",
"name": "Tough",
"points": 2,
"description": "It takes a lot to bring you down! You get a 20% bonus to all hit points.",
"starting_trait": true,
"category": [ "CATTLE", "CHIMERA", "PLANT", "URSINE", "TROGLOBITE" ],
"hp_modifier": 0.2
},
{
"type": "mutation",
"id": "TOUGH2",
"name": "Durable",
"points": 3,
"description": "You can shrug off almost anything! You get a 30% bonus to all hit points.",
"category": [ "CHIMERA", "PLANT", "URSINE" ],
"hp_modifier": 0.3
},
{
"type": "mutation",
"id": "TOUGH3",
"name": "Unbreakable",
"points": 4,
"description": "Nothing can break you! You get a 40% bonus to all hit points.",
"category": [ "CHIMERA" ],
"hp_modifier": 0.4
},
{
"type": "mutation",
"id": "THICKSKIN",
"name": "Thick-Skinned",
"points": 1,
"description": "Your skin is tough. Cutting damage is slightly reduced for you (all: +1 cut). Slightly decreases wet penalties.",
"starting_trait": true
},
{
"type": "mutation",
"id": "PACKMULE",
"name": "Packmule",
"points": 2,
"description": "You can manage to find space for anything! You can carry 40% more volume.",
"starting_trait": true,
"valid": false,
"category": [ "RAT" ]
},
{
"type": "mutation",
"id": "STRONGBACK",
"name": "Strong Back",
"points": 2,
"description": "You are capable of carrying far more than someone with similar strength could. Your maximum weight carried is increased by 35%.",
"starting_trait": true,
"valid": false,
"category": [ "CATTLE", "TROGLOBITE", "INSECT" ]
},
{
"type": "mutation",
"id": "GOURMAND",
"name": "Gourmand",
"points": 2,
"description": "You eat faster, and can eat and drink more, than anyone else! You also enjoy food more; delicious food is better for your morale, and you don't mind unsavory meals as much. Activate to skip prompt for overeating.",
"starting_trait": true,
"cancels": [ "NAUSEA" ],
"threshreq": [ "THRESH_SLIME", "THRESH_CHIMERA", "THRESH_RAT" ],
"category": [ "SLIME", "CHIMERA", "RAT" ],
"active": true,
"metabolism_modifier": 0.05,
"thirst_modifier": 0.05
},
{
"type": "mutation",
"id": "ADRENALINE",
"name": "High Adrenaline",
"points": 1,
"description": "If you are in a very dangerous situation, you may experience a temporary rush which increases your speed and strength significantly.",
"starting_trait": true,
"thirst_modifier": 0.05,
"stamina_regen_modifier": 0.05
},
{
"type": "mutation",
"id": "EAGLEEYED",
"//": "Can't change the ID as that breaks save-compatibility.",
"name": "Scout",
"points": 1,
"description": "You're an excellent navigator and your ability to spot distant landmarks is unmatched. Your sight radius on the overmap extends beyond the normal range.",
"starting_trait": true,
"valid": false,
"category": [ "FISH", "BIRD" ]
},
{
"type": "mutation",
"id": "CANNIBAL",
"name": "Cannibal",
"points": 1,
"description": "For your whole life you've been forbidden from indulging in your peculiar tastes. Now the world's ended, and you'll be damned if anyone is going to tell you that you can't eat people.",
"starting_trait": true,
"valid": false,
"category": [ "RAT", "CHIMERA", "INSECT", "TROGLOBITE" ],
"flags": [ "CANNIBAL" ]
},
{
"type": "mutation",
"id": "WEAKSCENT",
"name": "Weak Scent",
"points": 1,
"description": "Your scent is quite weak. Animals that track your scent will do so with more difficulty.",
"starting_trait": true,
"category": [ "ELFA", "PLANT", "LIZARD" ]
},
{
"type": "mutation",
"id": "BADKNEES",
"name": "Bad Knees",
"points": -1,
"description": "Whether due to injury or age, your knees aren't particularly strong or flexible. Moving over rough terrain will slow you down more than normal.",
"starting_trait": true,
"valid": false,
"category": [ "FISH", "CATTLE", "CEPHALOPOD", "MEDICAL" ]
},
{
"type": "mutation",
"id": "BADCARDIO",
"name": "Languorous",
"points": -2,
"description": "Whether due to lack of exercise and poor diet, or due to a natural disinclination to physical endurance, you tire due to physical exertion much more readily than others and find it harder to catch your breath afterwards. Your maximum stamina is 25% lower than usual.",
"starting_trait": true,
"valid": false,
"category": [ "BEAST", "CATTLE", "ELFA" ],
"stamina_regen_modifier": -0.2
},
{
"type": "mutation",
"id": "MYOPIC",
"name": "Near-Sighted",
"points": -2,
"description": "Without your glasses, your seeing radius is severely reduced! However, while wearing glasses this trait has no effect, and you are guaranteed to start with a pair.",
"starting_trait": true,
"cancels": [ "20_15" ]
},
{
"type": "mutation",
"id": "SLOWHEALER",
"name": "Slow Healer",
"points": -2,
"description": "You heal a little slower than most; sleeping will heal less lost HP.",
"starting_trait": true,
"healing_resting": -0.25,
"metabolism_modifier": -0.05
},
{
"type": "mutation",
"id": "SLOWHEALER2",
"name": "Very Slow Sleep Healing",
"points": -4,
"description": "You heal much slower than most; sleeping will heal only one third HP compare to the average person.",
"starting_trait": true,
"valid": false,
"purifiable": false,
"healing_resting": -0.66,
"metabolism_modifier": -0.1
},
{
"type": "mutation",
"id": "SLOWHEALER3",
"name": "Extremely Slow Sleep Healing",
"points": -8,
"description": "You almost cannot recover lost health by sleeping; sleeping will heal only one tenth HP compare to the average person.",
"starting_trait": true,
"valid": false,
"purifiable": false,
"healing_resting": -0.9,
"metabolism_modifier": -0.15
},
{
"type": "mutation",
"id": "HYPEROPIC",
"name": "Far-Sighted",
"points": -2,
"description": "Without reading glasses, you are unable to read anything, and take penalties on melee accuracy and electronics/tailoring crafting. However, you are guaranteed to start with a pair of reading glasses.",
"starting_trait": true,
"cancels": [ "20_15" ]
},
{
"type": "mutation",
"id": "HEAVYSLEEPER",
"name": "Heavy Sleeper",
"points": -1,
"description": "You're quite the heavy sleeper. Noises are unlikely to wake you up.",
"starting_trait": true,
"fatigue_regen_modifier": 0.005
},
{
"type": "mutation",
"id": "DISORGANIZED",
"name": "Disorganized",
"points": -3,
"description": "You are terrible at organizing and storing your possessions. You can carry 40% less volume.",
"starting_trait": true,
"valid": false,
"category": [ "LUPINE" ]
},
{
"type": "mutation",
"id": "BADHEARING",
"name": "Poor Hearing",
"points": -2,
"description": "Your hearing is poor, and you may not hear quiet or far-off noises.",
"starting_trait": true,
"category": [ "MEDICAL" ]
},
{
"type": "mutation",
"id": "INSOMNIA",
"name": "Insomniac",
"points": -2,
"description": "You have a hard time falling asleep, even under the best circumstances!",
"starting_trait": true,
"valid": false,
"category": [ "ALPHA" ],
"fatigue_regen_modifier": -0.01
},
{
"type": "mutation",
"id": "VEGETARIAN",
"name": "Meat Intolerance",
"points": -2,
"description": "You have problems with eating meat. It's possible for you to eat it, but you will suffer morale penalties due to nausea.",
"starting_trait": true,
"valid": false,
"category": [ "CATTLE", "PLANT" ]
},
{
"type": "mutation",
"id": "THINSKIN",
"name": "Thin-Skinned",
"points": -1,
"description": "Your skin is fragile. Cutting damage is slightly increased for you (all: -2 cut).",
"starting_trait": true,
"category": [ "MEDICAL", "CEPHALOPOD" ],
"armor": [ { "parts": "ALL", "cut": -2 } ],
"healing_awake": -0.05
},
{
"type": "mutation",
"id": "MEATARIAN",
"name": "Hates Vegetables",
"points": -2,
"description": "You, like many, hate eating your vegetables. It's possible for you to eat them, but you will suffer morale penalties due to nausea.",
"starting_trait": true,
"valid": false,
"category": [ "SPIDER", "LUPINE" ]
},
{
"type": "mutation",
"id": "ANTIFRUIT",
"name": "Hates Fruit",
"points": -3,
"description": "You despise eating fruits. It's possible for you to eat them, but you will suffer morale penalties due to nausea.",
"starting_trait": true,
"valid": false,
"category": [ "BEAST", "FELINE" ]
},
{
"type": "mutation",
"id": "LACTOSE",
"name": "Lactose Intolerance",
"points": -1,
"description": "You, like 75 percent of the world, cannot tolerate milk or milk based products. It's possible for you to eat them, but you will suffer morale penalties due to nausea.",
"starting_trait": true,
"category": [ "TROGLOBITE", "FISH", "PLANT" ]
},
{
"type": "mutation",
"id": "ANTIJUNK",
"name": "Junkfood Intolerance",
"points": -1,
"description": "Something in those heavily processed foods doesn't agree with you. It's possible for you to eat them, but you will suffer morale penalties due to nausea.",
"starting_trait": true,
"category": [ "FELINE" ]
},
{
"type": "mutation",
"id": "ANTIWHEAT",
"name": "Grain Intolerance",
"points": -2,
"description": "You have a rare allergy that prevents you from eating most types of grains such as wheat or oats. It's possible for you to eat them, but you will suffer morale penalties due to nausea.",
"starting_trait": true,
"category": [ "CHIMERA", "ELFA", "LIZARD" ]
},
{
"type": "mutation",
"id": "ADDICTIVE",
"name": "Addictive Personality",
"points": -2,
"description": "It's easier for you to become addicted to substances, and harder to rid yourself of these addictions.",
"starting_trait": true,
"category": [ "ALPHA" ]
},
{
"type": "mutation",
"id": "TRIGGERHAPPY",
"name": "Trigger Happy",
"points": -1,
"description": "On rare occasion, you will go full-auto when you intended to fire a single shot. This has no effect when firing semi-automatic firearms.",
"starting_trait": true,
"threshreq": [ "THRESH_MEDICAL", "THRESH_RAT", "THRESH_LUPINE" ],
"category": [ "MEDICAL", "RAT", "LUPINE" ]
},
{
"type": "mutation",
"id": "CHEMIMBALANCE",
"name": "Chemical Imbalance",
"points": -2,
"description": "You suffer from a minor chemical imbalance, whether mental or physical. Minor changes to your internal chemistry will manifest themselves on occasion, such as hunger, sleepiness, narcotic effects, etc.",
"starting_trait": true,
"cancels": [ "SAVANT", "CHEMREBALANCE", "CHEMREBALANCE2" ],
"threshreq": [ "THRESH_SLIME", "THRESH_MEDICAL", "THRESH_CHIMERA", "THRESH_ELFA", "THRESH_CATTLE" ],
"category": [ "CATTLE" ]
},
{
"type": "mutation",
"id": "HOARDER",
"name": "Hoarder",
"points": -4,
"description": "You don't feel right unless you're carrying as much as you can. You suffer morale penalties for carrying less than maximum volume (weight is ignored). Xanax can help control this anxiety.",
"starting_trait": true,
"threshreq": [ "THRESH_RAT" ],
"category": [ "RAT" ]
},
{
"type": "mutation",
"id": "SAVANT",
"name": "Savant",
"points": -4,
"description": "You tend to specialize in one skill and be poor at all others. You advance at half speed in all skills except your best one. Note that combining this with Fast Learner will come out to a slower rate of learning for all skills.",
"starting_trait": true,
"cancels": [ "CHEMIMBALANCE", "CHEMREBALANCE", "CHEMREBALANCE2" ],
"threshreq": [ "THRESH_ALPHA", "THRESH_CHIMERA" ],
"category": [ "ALPHA", "CHIMERA" ]
},
{
"type": "mutation",
"id": "PACIFIST",
"name": "Pacifist",
"points": -4,
"description": "You don't like thinking about violence. Your combat skills advance much slower than usual, and you feel more guilt about killing.",
"starting_trait": true,
"valid": false,
"threshreq": [ "THRESH_CATTLE" ],
"category": [ "CATTLE" ]
},
{
"type": "mutation",
"id": "SLOWRUNNER",
"name": "Slow Footed",
"points": -3,
"description": "You can't move as fast as most, resulting in a 15% speed penalty on flat ground. You get less thirsty as a result.",
"starting_trait": true,
"thirst_modifier": -0.2
},
{
"type": "mutation",
"id": "WEAKSTOMACH",
"name": "Weak Stomach",
"points": -1,
"description": "You are more likely to throw up from food poisoning, alcohol, etc.",
"starting_trait": true,
"thirst_modifier": 0.08
},
{
"type": "mutation",
"id": "FLIMSY",
"name": "Flimsy",
"points": -4,
"description": "Your body can't take much abuse. Its maximum HP is 25% lower than usual and you heal slightly slower. Stacks with Glass Jaw.",
"starting_trait": true,
"category": [ "CEPHALOPOD", "MEDICAL" ],
"hp_modifier": -0.25,
"cancels": [ "HUGE" ]
},
{
"type": "mutation",
"id": "NIGHTVISION3",
"name": "Full Night Vision",
"points": 6,
"description": "You can see in pitch blackness as if you were wearing night-vision goggles. Activate to toggle NV-visible areas on or off.",
"cancels": [ "20_15" ],
"active": true,
"starts_active": true
},
{
"type": "mutation",
"id": "CEPH_EYES",
"name": "Cephalopod Eyes",
"points": 1,
"visibility": 8,
"ugliness": 5,
"description": "Your eyes still bulge, yet your pupils look different somehow. Water doesn't seem to cause any trouble at all, though.",
"cancels": [ "20_15" ]
},
{
"type": "mutation",
"id": "CEPH_VISION",
"name": "Cephalopod Vision",
"points": 3,
"description": "Your brain has caught up with your eyes. You can see much better in the dark, but sunlight seems much brighter now. Activate to toggle NV-visible areas on or off.",
"cancels": [ "20_15" ],
"active": true,
"starts_active": true
},
{
"type": "mutation",
"id": "ELFAEYES",
"name": "Fey Eyes",
"points": 1,
"visibility": 2,
"ugliness": -1,
"description": "Your eyes have turned...green. It's tough to tell the exact shade as it seems to shift. The effect is ...pleasant.",
"valid": false
},
{
"type": "mutation",
"id": "ELFA_NV",
"name": "Fey Vision",
"points": 3,
"description": "The shadows don't seem as dark now. Activate to toggle NV-visible areas on or off.",
"cancels": [ "20_15" ],
"active": true,
"starts_active": true
},
{
"type": "mutation",
"id": "ELFA_FNV",
"name": "Fey Nightsight",
"points": 5,
"description": "You have great low-light vision now, though that doesn't allow you to perform fine tasks such as crafting and reading in darkness. Activate to toggle NV-visible areas on or off.",
"cancels": [ "20_15" ],
"active": true,
"starts_active": true
},
{
"type": "mutation",
"id": "FEL_EYE",
"name": "Feline Eyes",
"points": 0,
"visibility": 2,
"ugliness": -1,
"description": "Your eyes have mutated, now having a slitted pupil and glittering in light, much like those of cats. This is visually striking, but it isn't helping you see at night.",
"cancels": [ "20_15" ]
},
{
"type": "mutation",
"id": "FEL_NV",
"name": "Feline Vision",
"points": 4,
"description": "Your optic nerves and brain caught up with your eyes. Now you can see pretty well at night. Activate to toggle NV-visible areas on or off.",
"cancels": [ "20_15" ],
"active": true,
"starts_active": true
},
{
"type": "mutation",
"id": "URSINE_EYE",
"name": "Ursine Vision",
"points": 1,
"description": "Your visual processing has shifted: though you can see better in the dark, you're nearsighted in the light. Maybe glasses would help. Activate to toggle NV-visible areas on or off.",
"cancels": [ "20_15" ],
"active": true,
"starts_active": true
},
{
"type": "mutation",
"id": "BIRD_EYE",
"name": "Avian Eyes",
"points": 5,
"visibility": 1,
"description": "Your vision has become particularly acute: you suspect you could pick out zombies much farther away. +4 Perception.",
"cancels": [ "20_15" ]
},
{
"type": "mutation",
"id": "LIZ_EYE",
"name": "Reptilian Eyes",
"points": 0,
"visibility": 2,
"ugliness": -1,
"description": "Your eyes have mutated, with a brilliant iris and slitted pupil similar to that of a lizard. This is visually striking, but doesn't seem to affect your vision.",
"cancels": [ "20_15" ]
},
{
"type": "mutation",
"id": "LIZ_IR",
"name": "Reptilian IR",
"points": 5,
"description": "Your optic nerves and brain have mutated to catch up with your eyes, allowing you to see in the infrared spectrum.",
"cancels": [ "20_15" ]
},
{
"type": "mutation",
"id": "GILLS",
"name": "Gills",
"points": 2,
"visibility": 5,
"ugliness": 3,
"description": "You've grown a set of gills in your neck, allowing you to breathe easily over and underwater. Slightly increases wet benefits.",
"cancels": [ "LUNGS", "LUNGS_2" ],
"stamina_regen_modifier": 0.2
},
{
"type": "mutation",
"id": "GILLS_CEPH",
"name": "Cephalopod Gills",
"points": 2,
"visibility": 4,
"ugliness": 4,
"description": "You've grown a set of gills, running from your neck up behind your ears. They allow you to breathe easily over and underwater. Slightly increases wet benefits.",
"cancels": [ "LUNGS", "LUNGS_2" ],
"wet_protection": [ { "part": "head", "good": 2 } ],
"stamina_regen_modifier": 0.25
},
{
"type": "mutation",
"id": "M_SKIN",
"name": "Mycus Flesh",
"points": 2,
"visibility": 10,
"ugliness": 8,
"description": "We have adapted local physical structure to Mycus physiology (all: +2 bash, +1 cut). Greatly reduces wet effects.",
"valid": false,
"purifiable": false
},
{
"type": "mutation",
"id": "M_SKIN2",
"name": "Mycus Fireproofing",
"points": 5,
"visibility": 10,
"ugliness": 8,
"description": "We have incorporated the dense amphibole fibers used in Mycus core towers. Greatly reduces speed, but also damage (all: +3 bash, +2 cut), flammability, and wet effects.",
"valid": false,
"purifiable": false
},
{
"type": "mutation",
"id": "SCALES",
"name": "Scales",
"points": 2,
"visibility": 10,
"ugliness": 3,
"description": "A set of flexible green scales has grown to cover your body, acting as natural armor (all: +1 bash, +2 cut, +1 acid, +1 bio). Somewhat reduces wet effects.",
"armor": [ { "parts": "ALL", "bash": 1, "cut": 2, "acid": 1, "bio": 1 } ]
},
{
"type": "mutation",
"id": "THICK_SCALES",
"name": "Thick Scales",
"points": 3,
"visibility": 10,
"ugliness": 4,
"mixed_effect": true,
"description": "A set of heavy green scales has grown to cover your body, acting as natural armor (all: +2 bash, +5 cut, +3 acid, +1 bio, +1 heat). While difficult to penetrate, it also limits your flexibility, resulting in a -2 penalty to Dexterity. Greatly reduces wet effects.",
"armor": [ { "parts": "ALL", "bash": 2, "cut": 5, "acid": 3, "bio": 1, "heat": 1 } ]
},
{
"type": "mutation",
"id": "SLEEK_SCALES",
"name": "Sleek Scales",
"points": 4,
"visibility": 10,
"ugliness": 4,
"description": "A set of very flexible and slick scales has grown to cover your body. These act as weak natural armor (all: +1 bash, +2 cut, +2 acid, +2 electric, +2 heat), improve your ability to swim, and make you difficult to grab. Mostly reduces wet effects.",
"armor": [ { "parts": "ALL", "bash": 1, "cut": 2, "acid": 2, "electric": 2, "heat": 2 } ]
},
{
"type": "mutation",
"id": "LIGHT_BONES",
"name": "Light Bones",
"points": 2,
"description": "Your bones are very light. This enables you to move and attack 10% faster, but also reduces your carrying weight by 20% and makes bashing attacks hurt a little more.",
"metabolism_modifier": -0.1
},
{
"type": "mutation",
"id": "FEATHERS",
"name": "Feathers",
"points": 2,
"visibility": 10,
"ugliness": 3,
"description": "Iridescent feathers have grown to cover your entire body, providing a marginal protection against attacks and minor protection from cold (all: +2 bash, +1 cut, +1 acid). They also provide a natural waterproofing.",
"armor": [ { "parts": "ALL", "bash": 2, "cut": 1, "acid": 1 } ]
},
{
"type": "mutation",
"id": "DOWN",
"name": "Down",
"points": 0,
"visibility": 4,
"ugliness": 1,
"description": "You shan't need to migrate south with your layer of insulated down (all: +5 bash, +1 cut, +2 acid, +2 electric, +1 heat). It's even better with no apes around to kill you for it!",
"armor": [ { "parts": "ALL", "bash": 5, "cut": 1, "acid": 2, "electric": 2, "heat": 1 } ]
},
{
"type": "mutation",
"id": "FUR",
"name": "Furry",
"points": 2,
"visibility": 10,
"ugliness": 3,
"description": "Thick black fur has grown to cover your entire body, providing a marginal protection against attacks (all: +1 bash, +1 cut, +1 acid), and considerable protection from cold.",
"armor": [ { "parts": "ALL", "bash": 1, "cut": 1, "acid": 1 } ]
},
{
"type": "mutation",
"id": "URSINE_FUR",
"name": "Shaggy Fur",
"points": 4,
"visibility": 10,
"ugliness": 3,
"description": "Your fur has grown out and thickened, providing noticeable protection from attacks as well as considerable insulation (all: +3 bash, +4 cut, +1 acid, +2 heat).",
"armor": [ { "parts": "ALL", "bash": 3, "cut": 4, "acid": 1, "heat": 2 } ]
},
{
"type": "mutation",
"id": "LUPINE_FUR",
"name": "Gray Fur",
"points": 2,
"visibility": 10,
"ugliness": 3,
"description": "Dense gray fur has grown to cover your entire body, providing a marginal protection against attacks (all: +2 bash, +3 cut, +1 acid, +1 electric, +1 heat), and considerable protection from cold.",
"armor": [ { "parts": "ALL", "bash": 2, "cut": 3, "acid": 1, "electric": 1, "heat": 1 } ]
},
{
"type": "mutation",
"id": "FELINE_FUR",
"name": "Sleek Fur",
"points": 2,
"visibility": 10,
"ugliness": 3,
"description": "You've grown sleek brown fur, providing some protection from cold (all: +2 bash, +2 cut, +2 acid, +1 electric).",
"armor": [ { "parts": "ALL", "bash": 2, "cut": 2, "acid": 2, "electric": 1 } ]
},
{
"type": "mutation",
"id": "LYNX_FUR",
"name": "Lynx Fur",
"points": 1,
"visibility": 8,
"ugliness": 1,
"description": "Your fur's grown out significantly around your cheeks and neck. It provides minor protection against attacks (head, mouth: +1 cut, +1 heat).",
"armor": [ { "parts": [ "head", "mouth" ], "cut": 1, "heat": 1 } ]
},
{
"type": "mutation",
"id": "CHITIN",
"name": "Chitinous Skin",
"points": 2,
"visibility": 3,
"ugliness": 2,
"description": "Your epidermis has turned into a thin, flexible layer of chitin. It provides minor protection from wounds (all: +1 bash, +2 cut, +2 acid, +1 bio, +1 heat). Slightly reduces wet effects.",
"armor": [ { "parts": "ALL", "bash": 1, "cut": 2, "acid": 2, "bio": 1, "heat": 1 } ]
},
{
"type": "mutation",
"id": "CHITIN2",
"name": "Chitinous Armor",
"points": 2,
"visibility": 6,
"ugliness": 3,
"mixed_effect": true,
"description": "You've grown a chitin exoskeleton, much like that of an insect. It provides considerable physical protection (all: +3 bash, +5 cut, +3 acid, +1 bio, +2 heat), but reduces your dexterity by 1. Somewhat reduces wet effects.",
"armor": [ { "parts": "ALL", "bash": 3, "cut": 5, "acid": 3, "bio": 1, "heat": 2 } ]
},
{
"type": "mutation",
"id": "CHITIN3",
"name": "Chitinous Plate",
"points": 2,
"visibility": 8,
"ugliness": 5,
"description": "You've grown a chitin exoskeleton made of thick, stiff plates. It provides excellent physical protection (all: +8 bash, +12 cut, +3 acid, +2 bio, +2 heat), but reduces your dexterity by 2 and encumbers all body parts but your eyes and mouth. Greatly reduces wet effects.",
"encumbrance_always": [
[ "torso", 15 ],
[ "head", 15 ],
[ "arm_l", 15 ],
[ "arm_r", 15 ],
[ "hand_l", 10 ],
[ "hand_r", 10 ],
[ "leg_l", 15 ],
[ "leg_r", 15 ],
[ "foot_l", 10 ],
[ "foot_r", 10 ]
],
"passive_mods": { "dex_mod": -1 },
"armor": [ { "parts": "ALL", "bash": 8, "cut": 12, "acid": 3, "bio": 2, "heat": 2 } ]
},
{
"type": "mutation",
"id": "CHITIN_FUR",
"name": "Hairy Chitin",
"points": 3,
"visibility": 10,
"ugliness": 4,
"description": "You've developed some sort of hair growing out of your chitin (all: +1 cut). It's a bit warmer than not having hair.",
"armor": [ { "parts": "ALL", "cut": 1 } ]
},
{
"type": "mutation",
"id": "CHITIN_FUR2",
"name": "Furred Chitin",
"points": 4,
"visibility": 10,
"ugliness": 4,
"description": "Your chitin hair has thickened and spread across your body (all: +1 bash, +2 cut, +1 acid, +1 heat). It provides minor warmth and helps you sense nearby vibrations.",
"armor": [ { "parts": "ALL", "bash": 1, "cut": 2, "acid": 1, "heat": 1 } ]
},
{
"type": "mutation",
"id": "CHITIN_FUR3",
"name": "Furred Plate",
"points": 5,
"visibility": 10,
"ugliness": 4,
"description": "Your exoskeleton has hardened considerably--restricting movement, granted--and boasts a fine coat of hairs that put feline whiskers to shame (all: +6 bash, +10 cut, +4 acid, +2 electric, +2 bio, +2 heat).",
"encumbrance_always": [
[ "torso", 13 ],
[ "head", 13 ],
[ "arm_l", 13 ],
[ "arm_r", 13 ],
[ "hand_l", 12 ],
[ "hand_r", 12 ],
[ "leg_l", 13 ],
[ "leg_r", 13 ],
[ "foot_l", 12 ],
[ "foot_r", 12 ]
],
"armor": [ { "parts": "ALL", "bash": 6, "cut": 10, "acid": 4, "electric": 2, "bio": 2, "heat": 2 } ]
},
{
"type": "mutation",
"id": "CF_HAIR",
"name": "Urticating Hairs",
"points": 3,
"visibility": 1,
"ugliness": 1,
"description": "Significant amounts of your hairs have loosened (all: +1 bash, +2 cut, +1 heat). If some creature tries to attack you, your assailant is quite likely to get fine, bristly chitin in an irritating spot; it doesn't carry your venom but it will be distracting.",
"armor": [ { "parts": "ALL", "bash": 1, "cut": 2, "heat": 1 } ]
},
{
"type": "mutation",
"id": "SPINES",
"name": "Spines",
"points": 1,
"visibility": 1,
"ugliness": 2,
"description": "Your skin is covered with fine spines. Whenever an unarmed opponent strikes a part of your body that is not covered by clothing, they will receive moderate damage.",
"category": [ "CEPHALOPOD", "FISH", "CHIMERA", "LIZARD", "MEDICAL" ]
},
{
"type": "mutation",
"id": "QUILLS",
"name": "Quills",
"points": 2,
"visibility": 3,
"ugliness": 3,
"description": "Your body is covered with large quills (all: +1 bash, +2 cut, +1 heat). Whenever an unarmed opponent strikes a part of your body that is not covered by clothing, they will receive significant damage.",
"category": [ "CHIMERA" ],
"armor": [ { "parts": "ALL", "bash": 1, "cut": 2, "heat": 1 } ]
},
{
"type": "mutation",
"id": "PLANTSKIN",
"name": "Phelloderm",
"points": 3,
"visibility": 3,
"ugliness": 2,
"description": "Your skin is light green and has a slightly woody quality to it. This provides a weak armor (all: +2 cut, +1 heat), and helps you retain moisture, resulting in less thirst. Greatly decreases wet penalties.",
"armor": [ { "parts": "ALL", "cut": 2, "heat": 1 } ],
"thirst_modifier": -0.2
},
{
"type": "mutation",
"id": "BARK",
"name": "Bark",
"points": 5,
"visibility": 10,
"ugliness": 3,
"description": "Your skin is coated in a light bark, like that of a tree. This provides resistance to bashing and cutting damage but makes you vulnerable against fire (all: +5 bash, +2 cut). Greatly reduces wet effects.",
"armor": [ { "parts": "ALL", "bash": 5, "cut": 2 } ]
},
{
"type": "mutation",
"id": "LEAVES",
"name": "Leaves",
"points": 6,
"visibility": 8,
"ugliness": 3,
"description": "All the hair on your body has turned to long, grass-like leaves (all: +1 cut). Apart from being physically striking, these provide you with a minor amount of nutrition while in sunlight. Slightly reduces wet effects.",
"armor": [ { "parts": "ALL", "cut": 1 } ],
"thirst_modifier": 0.04
},
{
"type": "mutation",
"id": "FLOWERS",
"name": "Flowering",
"points": 2,
"visibility": 10,
"ugliness": -4,
"description": "You've started blooming where your scalp used to be. Your blossoms have a pleasant aroma, are visually striking, and are quite sensitive.",
"metabolism_modifier": 0.04
},
{
"type": "mutation",
"id": "M_BLOSSOMS",
"name": "Mycus Blossoms",
"points": 4,
"visibility": 10,
"ugliness": 3,
"description": "We have developed local blossoms. The Mycus must grow.",
"valid": false
},
{
"type": "mutation",
"id": "M_BLOOM",
"name": "Mycus Bloom",
"points": 6,
"visibility": 10,
"ugliness": 1,
"description": "Local organisms seem to regard open spore-dispersal as a danger, and attack the Mycus. Accordingly our local blossoms remain quiescent, until local guidance determines that it is safe to germinate. Rapid development taxes local nutrient reserves but ensures rapid and effective growth.",
"valid": false,
"active": true,
"cost": 10,
"hunger": true,
"thirst": true,
"fatigue": true
},
{
"type": "mutation",
"id": "SLIME_HANDS",
"name": "Slime Hands",
"points": 1,
"visibility": 5,
"ugliness": 4,
"description": "The skin on your hands is a mucous membrane and produces a thick, acrid slime (all: +1 cut, +3 acid). Attacks using your hand will cause minor acid damage. Slightly increases wet benefits.",
"armor": [ { "parts": "ALL", "cut": 1, "acid": 3 } ]
},
{
"type": "mutation",
"id": "BENDY1",
"name": "Stretchy Limbs",
"points": 1,
"visibility": 1,
"description": "Your limbs seem to have a little more 'give' to them. +1 Dexterity.",
"threshreq": [ "THRESH_CEPHALOPOD", "THRESH_PLANT", "THRESH_SPIDER" ],
"category": [ "CEPHALOPOD", "PLANT", "SPIDER" ]
},
{