-
Notifications
You must be signed in to change notification settings - Fork 1
/
mutations.json
6445 lines (5792 loc) · 199 KB
/
mutations.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": { "str": "Fleet-Footed" },
"points": 2,
"description": "You can move more quickly than most, resulting in a 15% speed bonus on sure footing.",
"starting_trait": true,
"category": [ "SPIDER", "MOUSE" ],
"types": [ "RUNNING" ],
"movecost_flatground_modifier": 0.85
},
{
"type": "mutation",
"id": "BIOLUM1",
"name": { "str": "Weak Photophore" },
"points": 1,
"description": "A photophore has grown from your head; you can make it glow softly. This will make you very visible in the dark, ideal for attracting a partner during mating season.",
"active": true,
"cost": 1,
"time": 810000,
"hunger": true,
"encumbrance_covered": [ [ "head", 5 ] ],
"category": [ "ELFA", "INSECT", "FISH" ],
"lumination": [ [ "head", 8 ] ]
},
{
"type": "mutation",
"id": "BIOLUM2",
"name": { "str": "Photophore" },
"points": 2,
"description": "You can make your photophore glow brightly.",
"active": true,
"cost": 1,
"time": 405000,
"hunger": true,
"encumbrance_covered": [ [ "head", 5 ] ],
"category": [ "ELFA", "INSECT", "FISH" ],
"lumination": [ [ "head", 20 ] ]
},
{
"type": "mutation",
"id": "GOODHEARING",
"name": { "str": "Good Hearing" },
"points": 1,
"description": "Your hearing is better than average, and you can hear distant sounds more easily.",
"starting_trait": true,
"category": [ "ALPHA", "MOUSE", "ELFA" ],
"hearing_modifier": 1.5
},
{
"type": "mutation",
"id": "FEYHEARING",
"name": { "str": "Fey Hearing" },
"points": 2,
"description": "You're not sure the shape of your ears is helping you any; regardless, you have become very sensitive to sounds.",
"category": [ "ELFA" ],
"hearing_modifier": 1.75
},
{
"type": "mutation",
"id": "OUTDOORSMAN",
"name": { "str": "Outdoorsman" },
"points": 1,
"description": "You are accustomed to being exposed to the elements. This decreases morale penalties for being wet.",
"starting_trait": true,
"valid": false,
"wet_protection": [
{ "part": "head", "neutral": 6 },
{ "part": "leg_l", "neutral": 8 },
{ "part": "leg_r", "neutral": 8 },
{ "part": "foot_l", "neutral": 2 },
{ "part": "foot_r", "neutral": 2 },
{ "part": "arm_l", "neutral": 8 },
{ "part": "arm_r", "neutral": 8 },
{ "part": "hand_l", "neutral": 12 },
{ "part": "hand_r", "neutral": 12 },
{ "part": "torso", "neutral": 10 }
]
},
{
"type": "mutation",
"id": "PARKOUR",
"name": { "str": "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,
"movecost_obstacle_modifier": 0.5
},
{
"type": "mutation",
"id": "GOODCARDIO",
"name": { "str": "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 and stamina regeneration is 25% higher than usual.",
"starting_trait": true,
"valid": false,
"category": [ "FISH", "LUPINE", "MOUSE", "INSECT" ],
"max_stamina_modifier": 1.25
},
{
"type": "mutation",
"id": "GOODCARDIO2",
"name": { "str": "Hyperactive" },
"points": 4,
"description": "Your body's efficiency is like that of a tiny furnace, increasing your maximum stamina and stamina regeneration by 40%.",
"valid": false,
"category": [ "MOUSE" ],
"max_stamina_modifier": 1.4
},
{
"type": "mutation",
"id": "QUICK",
"name": { "str": "Quick" },
"points": 4,
"description": "You're just generally quick! You get a 10% bonus to action points.",
"starting_trait": true,
"category": [ "FISH", "BIRD", "INSECT", "TROGLOBITE", "CHIMERA", "RAPTOR", "MOUSE" ],
"speed_modifier": 1.1
},
{
"type": "mutation",
"id": "OPTIMISTIC",
"name": { "str": "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,
"cancels": [ "BADTEMPER" ]
},
{
"type": "mutation",
"id": "FASTHEALER",
"name": { "str": "Fast Healer" },
"points": 2,
"description": "Your wounds heal themselves quicker than usual. You heal 50% faster whilst asleep, and 20% faster whilst awake. Your broken limbs also heal twice as fast.",
"starting_trait": true,
"types": [ "HEALING" ],
"category": [ "MEDICAL" ],
"healing_awake": 0.2,
"healing_resting": 0.5,
"mending_modifier": 2.0
},
{
"type": "mutation",
"id": "LIGHTEATER",
"name": { "str": "Light Eater" },
"points": 1,
"description": "Your metabolism is a little slower, and you require less food than most.",
"starting_trait": true,
"types": [ "METABOLISM" ],
"category": [ "FISH", "BIRD", "INSECT", "TROGLOBITE" ],
"metabolism_modifier": -0.333
},
{
"type": "mutation",
"id": "EASYSLEEPER",
"name": { "str": "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": [ "MOUSE", "INSECT" ]
},
{
"type": "mutation",
"id": "EASYSLEEPER2",
"name": { "str": "Practiced Sleeper" },
"points": 2,
"description": "Your body's demanding energy needs mean you can fall asleep just about anywhere.",
"category": [ "MOUSE" ]
},
{
"type": "mutation",
"id": "PAINRESIST",
"name": { "str": "Pain Resistant" },
"points": 2,
"description": "You have a high tolerance for pain.",
"starting_trait": true,
"valid": false,
"category": [ "MEDICAL" ]
},
{
"type": "mutation",
"id": "NIGHTVISION",
"name": { "str": "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": [ "BIRD", "CATTLE", "INSECT", "URSINE" ],
"active": true,
"starts_active": true,
"night_vision_range": 2
},
{
"type": "mutation",
"id": "POISRESIST",
"name": { "str": "Poison Resistant" },
"points": 1,
"description": "Your system is rather tolerant of poisons and toxins, and most will affect you less.",
"starting_trait": true,
"category": [ "INSECT", "SLIME", "SPIDER", "MEDICAL" ]
},
{
"type": "mutation",
"id": "FASTREADER",
"name": { "str": "Fast Reader" },
"points": 1,
"description": "You're a quick reader, and can get through books a lot faster than most.",
"reading_speed_multiplier": 0.8,
"starting_trait": true,
"valid": false
},
{
"type": "mutation",
"id": "BOVINE_BULK",
"name": { "str": "Sheer Bulk" },
"points": 2,
"description": "You've developed a very robust build. You get a +15 bonus to all hit points. Swimming will be more difficult from now on.",
"category": [ "CATTLE" ],
"movecost_swim_modifier": 1.3,
"hp_adjustment": 15
},
{
"type": "mutation",
"id": "BOVINE_BULK2",
"name": { "str": "Immense Bulk" },
"points": 4,
"description": "There is no way you'd be allowed to compete in pre-Cataclysm sports. You get a +30 bonus to all hit points. Swimming is no longer recommended for someone built like you.",
"category": [ "CATTLE" ],
"movecost_swim_modifier": 1.7,
"hp_adjustment": 30
},
{
"type": "mutation",
"id": "TOUGH",
"name": { "str": "Tough" },
"points": 2,
"description": "It takes a lot to bring you down! You get a 20% bonus to all hit points.",
"starting_trait": true,
"valid": false,
"social_modifiers": { "intimidate": 2 },
"hp_modifier": 0.2
},
{
"type": "mutation",
"id": "TOUGH2",
"name": { "str": "Durable" },
"points": 3,
"description": "You can shrug off almost anything! You get a 30% bonus to all hit points.",
"valid": false,
"social_modifiers": { "intimidate": 3 },
"hp_modifier": 0.3
},
{
"type": "mutation",
"id": "TOUGH3",
"name": { "str": "Unbreakable" },
"points": 4,
"description": "Nothing can break you! You get a 40% bonus to all hit points.",
"valid": false,
"social_modifiers": { "intimidate": 4 },
"hp_modifier": 0.4
},
{
"type": "mutation",
"id": "THICKSKIN",
"name": { "str": "Thick-Skinned" },
"points": 1,
"description": "Your skin is tough. Physical damage is slightly reduced for you. There's a small chance you don't cut yourself on sharp terrain.",
"starting_trait": true,
"category": [ "LIZARD", "CATTLE", "CHIMERA", "RAPTOR" ],
"armor": [ { "parts": "ALL", "physical": 2 } ]
},
{
"type": "mutation",
"id": "PACKMULE",
"name": { "str": "Packmule" },
"points": 2,
"description": "You can manage to find space for anything! You can carry 40% more volume.",
"starting_trait": true,
"valid": false,
"cancels": [ "DISORGANIZED" ]
},
{
"type": "mutation",
"id": "STRONGBACK",
"name": { "str": "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,
"weight_capacity_modifier": 1.35
},
{
"type": "mutation",
"id": "FASTLEARNER",
"name": { "str": "Fast Learner" },
"points": 3,
"description": "You have a flexible mind, allowing you to learn skills much faster than others. Note that this only applies to real-world experience, not to skill gain from other sources like books.",
"starting_trait": true,
"valid": false,
"cancels": [ "SLOWLEARNER" ]
},
{
"type": "mutation",
"id": "STRONGSTOMACH",
"name": { "str": "Strong Stomach" },
"points": 1,
"description": "You are less likely to throw up from food poisoning, alcohol, etc. If you throw up despite this, you won't suffer any residual nausea.",
"starting_trait": true,
"cancels": [ "WEAKSTOMACH" ]
},
{
"type": "mutation",
"id": "DEFT",
"name": { "str": "Deft" },
"points": 1,
"description": "While you're not any better at melee combat, you are better at recovering from a miss, and will be able to attempt another strike faster.",
"starting_trait": true,
"category": [ "BIRD", "BEAST", "RAPTOR", "MOUSE", "FELINE" ]
},
{
"type": "mutation",
"id": "SPIRITUAL",
"name": { "str": "Spiritual" },
"points": 1,
"description": "You've always felt that there is more to the world than we can see. Whether driven by religious beliefs or philosophical interest, you find great inspiration in studying holy texts and experiencing mystical things.",
"starting_trait": true,
"social_modifiers": { "persuade": 5 },
"valid": false
},
{
"type": "mutation",
"id": "TOLERANCE",
"name": { "str": "Substance Tolerance" },
"points": 1,
"description": "You can handle intoxicants well. Their effects clear up more quickly for you.",
"starting_trait": true,
"cancels": [ "LIGHTWEIGHT" ]
},
{
"type": "mutation",
"id": "GOURMAND",
"name": { "str": "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.",
"starting_trait": true,
"category": [ "MOUSE", "LUPINE" ],
"valid": false
},
{
"type": "mutation",
"id": "LOVES_BOOKS",
"name": { "str": "Bookworm" },
"points": 1,
"description": "There's nothing quite like the smell of a good book! Books are more fun (or less boring) for you!",
"starting_trait": true,
"valid": false,
"cancels": [ "ILLITERATE" ]
},
{
"type": "mutation",
"id": "NONADDICTIVE",
"name": { "str": "Addiction Resistant" },
"points": 1,
"description": "Whether due to a lifetime of exposure or through simple willpower, it's harder for you to become addicted to substances, and easier to rid yourself of these addictions.",
"starting_trait": true,
"valid": false,
"cancels": [ "ADDICTIVE" ]
},
{
"type": "mutation",
"id": "ANIMALEMPATH",
"name": { "str": "Animal Empathy" },
"points": 1,
"description": "Peaceful animals will not run away from you, and even aggressive animals are less likely to attack. This only applies to natural animals such as woodland creatures.",
"starting_trait": true,
"category": [ "BEAST", "ELFA" ],
"cancels": [ "ANIMALDISCORD" ]
},
{
"type": "mutation",
"id": "ANIMALEMPATH2",
"name": { "str": "Animal Kinship" },
"points": 2,
"description": "Something about your presence is calming to animals, and they will treat you with innate trust. This only applies to natural animals such as woodland creatures.",
"category": [ "ELFA" ],
"cancels": [ "ANIMALDISCORD" ]
},
{
"type": "mutation",
"id": "TERRIFYING",
"name": { "str": "Terrifying" },
"points": 1,
"description": "There's something about you that creatures find frightening, and they are more likely to try to flee.",
"starting_trait": true,
"category": [ "BEAST", "INSECT", "CHIMERA" ],
"social_modifiers": { "intimidate": 15 }
},
{
"type": "mutation",
"id": "ADRENALINE",
"name": { "str": "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,
"category": [ "BEAST", "CHIMERA" ]
},
{
"type": "mutation",
"id": "WAKEFUL",
"name": { "str": "Less Sleep" },
"points": 1,
"description": "You need less sleep than the average person.",
"types": [ "SLEEP" ],
"starting_trait": true,
"category": [ "ALPHA", "ELFA" ],
"fatigue_modifier": -0.15
},
{
"type": "mutation",
"id": "SELFAWARE",
"name": { "str": "Self-Aware" },
"points": 1,
"description": "You get to see your exact amount of HP remaining and health, instead of only having a vague idea of whether you're in good condition or not.",
"starting_trait": true,
"valid": false,
"active": true,
"category": [ "MEDICAL" ]
},
{
"type": "mutation",
"id": "MASOCHIST",
"name": { "str": "Masochist" },
"points": 1,
"description": "Although you still suffer the negative effects of pain, it also brings a unique pleasure to you.",
"starting_trait": true,
"valid": false
},
{
"type": "mutation",
"id": "STIMBOOST",
"name": { "str": "Stimulant Psychosis" },
"points": 2,
"mixed_effect": true,
"description": "You have a unique history with stimulants (like coffee or amphetamines). You can tolerate a lot more of them without overdosing, but if you indulge too much, you start seeing things…",
"starting_trait": true,
"valid": false
},
{
"type": "mutation",
"id": "STYLISH",
"name": { "str": "Stylish" },
"points": 2,
"description": "Practicality is far less important than style. Your morale is improved by wearing fashionable and attractive clothing.",
"starting_trait": true,
"valid": false
},
{
"type": "mutation",
"id": "LIGHTSTEP",
"name": { "str": "Light Step" },
"points": 1,
"description": "You make no noise while walking.",
"starting_trait": true,
"category": [ "BIRD", "ELFA", "FELINE" ],
"noise_modifier": 0.0
},
{
"type": "mutation",
"id": "EAGLEEYED",
"//": "Can't change the ID as that breaks save-compatibility.",
"name": { "str": "Scout" },
"points": 1,
"description": "You're an excellent navigator and your ability to recognize distant landmarks is unmatched. Your sight radius on the overmap extends beyond the normal range.",
"valid": false,
"starting_trait": true,
"category": [ "BIRD", "MOUSE" ],
"overmap_sight": 5
},
{
"type": "mutation",
"id": "UNOBSERVANT",
"name": { "str": "Topographagnosia" },
"points": -1,
"description": "Focal brain damage has rendered you incapable of recognizing landmarks and orienting yourself in your surroundings, severely crippling your sight radius on the overmap.",
"valid": false,
"starting_trait": true,
"overmap_sight": -10
},
{
"type": "mutation",
"id": "CANNIBAL",
"name": { "str": "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,
"flags": [ "CANNIBAL" ]
},
{
"type": "mutation",
"id": "PSYCHOPATH",
"name": { "str": "Psychopath" },
"points": 2,
"description": "You don't experience guilt like others do. Even when you know your actions are wrong, you just don't care.",
"starting_trait": true,
"valid": false,
"social_modifiers": { "intimidate": 5 },
"flags": [ "CANNIBAL" ]
},
{
"type": "mutation",
"id": "KILLER",
"name": { "str": "Killer Drive" },
"points": 2,
"description": "You derive enjoyment from killing things. Putting end to life seem to spark some dark satisfaction and thrill, and you crave it every moment.",
"starting_trait": true,
"valid": false,
"social_modifiers": { "intimidate": 10 },
"category": [ "LUPINE" ],
"flags": [ "CANNIBAL" ]
},
{
"type": "mutation",
"id": "MARTIAL_ARTS",
"name": { "str": "Martial Arts Training" },
"points": 2,
"description": "You have received some martial arts training at a local dojo. You start with your choice of Karate, Judo, Aikido, Tai Chi, Taekwondo, Kickboxing, or Pankration.",
"starting_trait": true,
"initial_ma_styles": [
"style_karate",
"style_judo",
"style_aikido",
"style_tai_chi",
"style_taekwondo",
"style_pankration",
"style_kickboxing"
],
"valid": false
},
{
"type": "mutation",
"id": "MARTIAL_ARTS2",
"name": { "str": "Self-Defense Classes" },
"points": 2,
"description": "You have taken some self-defense classes at a nearby gym. You start with your choice of Boxing, Capoeira, Krav Maga, Muay Thai, Ninjutsu, Wing Chun, or Zui Quan.",
"starting_trait": true,
"initial_ma_styles": [
"style_boxing",
"style_krav_maga",
"style_muay_thai",
"style_ninjutsu",
"style_capoeira",
"style_zui_quan",
"style_wingchun"
],
"valid": false
},
{
"type": "mutation",
"id": "MARTIAL_ARTS3",
"name": { "str": "Shaolin Adept" },
"points": 2,
"description": "You have studied the arts of the Shaolin monks. You start with one of the five animal fighting styles: Tiger, Crane, Leopard, Snake, or Dragon.",
"starting_trait": true,
"initial_ma_styles": [ "style_tiger", "style_crane", "style_leopard", "style_snake", "style_dragon" ],
"valid": false
},
{
"type": "mutation",
"id": "MARTIAL_ARTS5",
"name": { "str": "Melee Weapon Training" },
"points": 3,
"description": "You have practiced fighting with weapons. You start with your choice of Barbaran Montante, Eskrima, Fencing, Fior Di Battaglia, Medieval Swordsmanship, Niten Ichi-Ryu, Pentjak Silat, or Sōjutsu.",
"starting_trait": true,
"initial_ma_styles": [
"style_barbaran",
"style_eskrima",
"style_fencing",
"style_silat",
"style_niten",
"style_sojutsu",
"style_swordsmanship",
"style_medievalpole"
],
"valid": false
},
{
"type": "mutation",
"id": "MARTIAL_FENCING",
"name": { "str": "Competitive Fencer" },
"points": 0,
"description": "You were an avid fencer, starting with foil and moving onto saber, then épée. You competed nationally and dabbled with some of the historical fencing weapons afforded by HEMA's popularity.",
"starting_trait": false,
"initial_ma_styles": [ "style_fencing" ],
"valid": false
},
{
"type": "mutation",
"id": "WEAKSCENT",
"name": { "str": "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": [ "ALPHA" ],
"scent_intensity": 300,
"types": [ "SCENT" ]
},
{
"type": "mutation",
"id": "LIAR",
"name": { "str": "Skilled Liar" },
"points": 1,
"description": "You have no qualms about bending the truth, and have practically no tells. Telling lies and otherwise bluffing will be much easier for you.",
"starting_trait": true,
"social_modifiers": { "lie": 40 }
},
{
"type": "mutation",
"id": "PRETTY",
"name": { "str": "Pretty" },
"points": 1,
"visibility": 1,
"ugliness": -2,
"description": "You are a sight to behold. People who care about such things will react more kindly to you.",
"starting_trait": true,
"category": [ "ALPHA", "FELINE", "LUPINE" ],
"changes_to": [ "BEAUTIFUL" ]
},
{
"type": "mutation",
"id": "BADKNEES",
"name": { "str": "Bad Knees" },
"points": -2,
"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,
"movecost_obstacle_modifier": 1.25
},
{
"type": "mutation",
"id": "BADCARDIO",
"name": { "str": "Languorous" },
"points": -4,
"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. Your maximum stamina and stamina regeneration is 25% lower than usual.",
"starting_trait": true,
"valid": false,
"max_stamina_modifier": 0.75
},
{
"type": "mutation",
"id": "MYOPIC",
"name": { "str": "Near-Sighted" },
"points": -1,
"description": "Without glasses, your seeing radius is severely reduced! However, you are guaranteed to start with a pair of glasses.",
"starting_trait": true,
"category": [ "BEAST", "TROGLOBITE", "URSINE" ]
},
{
"type": "mutation",
"id": "SLOWHEALER",
"name": { "str": "Slow Healer" },
"points": -2,
"description": "Your wounds heal a little slower than most. Your HP whilst asleep, as well as your broken limbs, heal at 75% of the regular rate.",
"starting_trait": true,
"types": [ "HEALING" ],
"healing_resting": -0.25,
"mending_modifier": 0.5
},
{
"type": "mutation",
"id": "SLOWHEALER2",
"name": { "str": "Poor Healer" },
"points": -4,
"description": "Your health recovery is severely impaired. Your HP whilst asleep, as well as your broken limbs, heal at 33% of the regular rate.",
"starting_trait": true,
"valid": false,
"purifiable": false,
"types": [ "HEALING" ],
"healing_resting": -0.66,
"mending_modifier": 0.33
},
{
"type": "mutation",
"id": "SLOWHEALER3",
"name": { "str": "Imperceptive Healer" },
"points": -8,
"description": "Wounds are incredibly dangerous to you, as they barely heal at all. Your HP whilst asleep, as well as your broken limbs, heal at 10% of the regular rate.",
"starting_trait": true,
"valid": false,
"purifiable": false,
"types": [ "HEALING" ],
"healing_resting": -0.9,
"mending_modifier": 0.1
},
{
"type": "mutation",
"id": "HYPEROPIC",
"name": { "str": "Far-Sighted" },
"points": -1,
"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,
"valid": false
},
{
"type": "mutation",
"id": "HEAVYSLEEPER",
"name": { "str": "Heavy Sleeper" },
"points": -1,
"description": "You're quite the heavy sleeper. Noises are unlikely to wake you up.",
"category": [ "INSECT", "PLANT", "MEDICAL", "LUPINE" ]
},
{
"type": "mutation",
"id": "SLEEPY",
"name": { "str": "Sleepy" },
"points": -2,
"description": "You need sleep more often, but still spend most of your time awake.",
"starting_trait": true,
"types": [ "SLEEP" ],
"category": [ "BEAST", "CHIMERA", "MOUSE" ],
"fatigue_modifier": 0.333,
"fatigue_regen_modifier": 0.333
},
{
"type": "mutation",
"id": "ASTHMA",
"name": { "str": "Asthmatic" },
"points": -3,
"description": "You will occasionally need to use an inhaler, or else suffer severe physical limitations. However, you are guaranteed to start with an inhaler.",
"social_modifiers": { "intimidate": -2 },
"starting_trait": true,
"valid": false
},
{
"type": "mutation",
"id": "BADBACK",
"name": { "str": "Bad Back" },
"points": -3,
"description": "You simply cannot carry as much as people with a similar strength could. Your maximum weight carried is reduced by 35%.",
"starting_trait": true,
"category": [ "BIRD", "ELFA" ],
"weight_capacity_modifier": 0.65
},
{
"type": "mutation",
"id": "BADTEMPER",
"name": { "str": "Bad Temper" },
"points": -2,
"description": "Things just keep getting you down. You tend to be unhappy, and it takes some doing to cheer you up.",
"starting_trait": true,
"category": [ "URSINE", "LIZARD", "CHIMERA" ]
},
{
"type": "mutation",
"id": "DISORGANIZED",
"name": { "str": "Disorganized" },
"points": -3,
"description": "You are terrible at organizing and storing your possessions. You can carry 40% less volume.",
"starting_trait": true,
"valid": false,
"cancels": [ "PACKMULE" ]
},
{
"type": "mutation",
"id": "ILLITERATE",
"name": { "str": "Illiterate" },
"points": -6,
"description": "You never learned to read! Books and computers are off-limits to you.",
"starting_trait": true,
"valid": false
},
{
"type": "mutation",
"id": "BADHEARING",
"name": { "str": "Poor Hearing" },
"points": -1,
"description": "Your hearing is poor, and you may not hear quiet or far-off noises.",
"starting_trait": true,
"category": [ "PLANT" ],
"hearing_modifier": 0.5
},
{
"type": "mutation",
"id": "DEAF",
"name": { "str": "Deaf" },
"points": -5,
"description": "You're not able to hear anything, and as such you're not able to talk to NPCs.",
"starting_trait": true,
"valid": false,
"hearing_modifier": 0.0
},
{
"type": "mutation",
"id": "SLOWLEARNER",
"name": { "str": "Slow Learner" },
"points": -3,
"description": "You are slow to grasp new ideas, and thus learn things more slowly than others. Note that this only applies to real-world experience, not to skill gain from other sources like books.",
"starting_trait": true,
"valid": false,
"cancels": [ "FASTLEARNER" ]
},
{
"type": "mutation",
"id": "INSOMNIA",
"name": { "str": "Insomniac" },
"points": -2,
"description": "You have a hard time falling asleep, even under the best circumstances!",
"starting_trait": true,
"valid": false,
"category": [ "MEDICAL" ],
"cancels": [ "EASYSLEEPER" ]
},
{
"type": "mutation",
"id": "VEGETARIAN",
"name": { "str": "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 and obtain less nutrition from it.",
"starting_trait": true,
"valid": false,
"vitamins_absorb_multi": [ [ "flesh", [ [ "vitA", 0 ], [ "vitB", 0 ], [ "vitC", 0 ], [ "calcium", 0 ], [ "iron", 0 ] ] ] ]
},
{
"type": "mutation",
"id": "THINSKIN",
"name": { "str": "Thin-Skinned" },
"points": -1,
"description": "Your skin is fragile. Physical damage is slightly increased for you.",
"starting_trait": true,
"armor": [ { "parts": "ALL", "physical": -2 } ]
},
{
"type": "mutation",
"id": "MEATARIAN",
"name": { "str": "Hates Vegetables" },
"points": -2,
"description": "You have problems with eating vegetables. It's possible for you to eat them, but you will suffer morale penalties and obtain less nutrition from them.",
"starting_trait": true,
"valid": false,
"vitamins_absorb_multi": [ [ "veggy", [ [ "vitA", 0 ], [ "vitB", 0 ], [ "vitC", 0 ], [ "calcium", 0 ], [ "iron", 0 ] ] ] ],
"cancels": [ "VEGETARIAN" ]
},
{
"type": "mutation",
"id": "ANTIFRUIT",
"name": { "str": "Hates Fruit" },
"points": -2,
"description": "You despise eating fruits. It's possible for you to eat them, but you will suffer morale penalties and obtain less nutrition from them.",
"starting_trait": true,
"valid": false,
"vitamins_absorb_multi": [ [ "fruit", [ [ "vitA", 0 ], [ "vitB", 0 ], [ "vitC", 0 ], [ "calcium", 0 ], [ "iron", 0 ] ] ] ],
"cancels": [ "VEGETARIAN" ]
},
{
"type": "mutation",
"id": "LACTOSE",
"name": { "str": "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 and obtain less nutrition from them.",
"vitamins_absorb_multi": [ [ "milk", [ [ "vitA", 0 ], [ "vitB", 0 ], [ "vitC", 0 ], [ "calcium", 0 ], [ "iron", 0 ] ] ] ],
"starting_trait": true
},
{
"type": "mutation",
"id": "ANTIJUNK",
"name": { "str": "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 and obtain less nutrition from them.",
"starting_trait": true,
"vitamins_absorb_multi": [ [ "junk", [ [ "vitA", 0 ], [ "vitB", 0 ], [ "vitC", 0 ], [ "calcium", 0 ], [ "iron", 0 ] ] ] ],
"category": [ "BEAST", "RAPTOR", "ALPHA", "ELFA" ]
},
{
"type": "mutation",
"id": "ANTIWHEAT",
"name": { "str": "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 and obtain less nutrition from them.",
"vitamins_absorb_multi": [ [ "wheat", [ [ "vitA", 0 ], [ "vitB", 0 ], [ "vitC", 0 ], [ "calcium", 0 ], [ "iron", 0 ] ] ] ],
"starting_trait": true
},
{
"type": "mutation",
"id": "PROJUNK",
"name": { "str": "Sweet Tooth" },
"points": 1,
"description": "You have a soft spot for processed foods, and gain a morale bonus from eating them.",
"starting_trait": true,
"category": [ "MOUSE", "INSECT" ]
},
{
"type": "mutation",
"id": "PROJUNK2",
"name": { "str": "Sugar-Loving" },
"points": 2,
"description": "You *adore* the taste of junk food, and find it preferable to everything else!",
"purifiable": false,
"category": [ "MOUSE" ]
},
{
"type": "mutation",
"id": "GLASSJAW",
"name": { "str": "Glass Jaw" },
"points": -2,
"description": "Your head can't take much abuse. Its maximum HP is 20% lower than usual.",
"starting_trait": true,
"social_modifiers": { "intimidate": -2 },
"category": [ "BIRD", "RAPTOR" ],
"cancels": [ "TOUGH" ]
},
{
"type": "mutation",
"id": "LIGHTWEIGHT",
"name": { "str": "Lightweight" },
"points": 0,
"description": "Alcohol and drugs go straight to your head. You suffer (and enjoy) the effects of these for longer.",
"category": [ "MEDICAL" ],
"cancels": [ "TOLERANCE" ]
},
{
"type": "mutation",
"id": "ADDICTIVE",
"name": { "str": "Addictive Personality" },
"points": -1,
"description": "It's easier for you to become addicted to substances, and harder to rid yourself of these addictions.",
"starting_trait": true,