forked from inikishev/rimworld-scrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathduplicates by label_norm.xml
7484 lines (5842 loc) · 497 KB
/
duplicates by label_norm.xml
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
<?xml version="1.0" encoding="utf-8"?>
<Duplicates>
<!-- exsanguinate -->
<li>AbilityDef/Cexsanguinate</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>AbilityDef/HSAU_Ability_Exsanguinate</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<!-- infernorocket -->
<li>AbilityDef/LaunchInfernoRocket</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>AbilityDef/MooMF_BigInfernoRocket</li> <!-- 2819828894/mooloh.mythicitems/`Mooloh's Mythic Framework` -->
<!-- ocularconversion -->
<li>AbilityDef/AA_OcularConversion</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>AbilityDef/AG_OcularConversionAlphaBiomes</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<!-- packtactics -->
<li>AbilityDef/GR_PackTactics</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>AbilityDef/AG_InsectRally</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<!-- psychicblast -->
<li>AbilityDef/PsychicBlast</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>AbilityDef/Cblast</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<!-- resurrect -->
<li>AbilityDef/VRE_Resurrect</li> <!-- 2963116383/vanillaracesexpanded.sanguophage/`Vanilla Races Expanded - Sanguophage` -->
<li>AbilityDef/Outland_Resurrect</li> <!-- 2910172297/neronix17.outland.genetics/`Outland - Genetics` -->
<!-- escp -->
<li>AchievementsExpanded.AchievementTabDef/ESCP_AchievementsTab</li> <!-- 2946580496/sirmashedpotato.escp.necromanticthralls/`ESCP - Necromantic Thralls` -->
<li>AchievementsExpanded.AchievementTabDef/ESCP_AchievementsTab</li> <!-- 2878028462/sirmashedpotato.escp.trolls/`ESCP - Trolls` -->
<!-- vanillaexpanded -->
<li>AchievementsExpanded.AchievementTabDef/VanillaExpanded</li> <!-- 1814383360/vanillaexpanded.vwe/`Vanilla Weapons Expanded` -->
<li>AchievementsExpanded.AchievementTabDef/VanillaExpanded</li> <!-- 1814988282/vanillaexpanded.varme/`Vanilla Armour Expanded` -->
<!-- summonaraid -->
<li>AchievementsExpanded.Reward_EnemyRaid/EnemyRaidRewardVE</li> <!-- 1814383360/vanillaexpanded.vwe/`Vanilla Weapons Expanded` -->
<li>AchievementsExpanded.Reward_EnemyRaid/EnemyRaidRewardVE</li> <!-- 1814988282/vanillaexpanded.varme/`Vanilla Armour Expanded` -->
<li>AchievementsExpanded.Reward_EnemyRaid/EnemyRaidRewardWitcher</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>AchievementsExpanded.Reward_EnemyRaid/EnemyRaidReward</li> <!-- 2288125657/vanillaexpanded.achievements/`Vanilla Achievements Expanded` -->
<!-- maninblackjoins -->
<li>AchievementsExpanded.Reward_MapIncident/ManInBlackRewardVE</li> <!-- 1814383360/vanillaexpanded.vwe/`Vanilla Weapons Expanded` -->
<li>AchievementsExpanded.Reward_MapIncident/ManInBlackRewardVE</li> <!-- 1814988282/vanillaexpanded.varme/`Vanilla Armour Expanded` -->
<li>AchievementsExpanded.Reward_MapIncident/ManInBlackRewardWitcher</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>AchievementsExpanded.Reward_MapIncident/ManInBlackReward</li> <!-- 2288125657/vanillaexpanded.achievements/`Vanilla Achievements Expanded` -->
<!-- spawncargopods -->
<li>AchievementsExpanded.Reward_MapIncident/CargoPodsRewardVE</li> <!-- 1814383360/vanillaexpanded.vwe/`Vanilla Weapons Expanded` -->
<li>AchievementsExpanded.Reward_MapIncident/CargoPodsRewardVE</li> <!-- 1814988282/vanillaexpanded.varme/`Vanilla Armour Expanded` -->
<li>AchievementsExpanded.Reward_MapIncident/CargoPodsRewardWitcher</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>AchievementsExpanded.Reward_MapIncident/CargoPodsReward</li> <!-- 2288125657/vanillaexpanded.achievements/`Vanilla Achievements Expanded` -->
<!-- summonatradecaravan -->
<li>AchievementsExpanded.Reward_MapIncident/TradeCaravanRewardVE</li> <!-- 1814383360/vanillaexpanded.vwe/`Vanilla Weapons Expanded` -->
<li>AchievementsExpanded.Reward_MapIncident/TradeCaravanRewardVE</li> <!-- 1814988282/vanillaexpanded.varme/`Vanilla Armour Expanded` -->
<li>AchievementsExpanded.Reward_MapIncident/TradeCaravanRewardWitcher</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>AchievementsExpanded.Reward_MapIncident/TradeCaravanReward</li> <!-- 2288125657/vanillaexpanded.achievements/`Vanilla Achievements Expanded` -->
<!-- randomevent -->
<li>AchievementsExpanded.Reward_RandomEvent/RandomEventRewardVE</li> <!-- 1814383360/vanillaexpanded.vwe/`Vanilla Weapons Expanded` -->
<li>AchievementsExpanded.Reward_RandomEvent/RandomEventRewardVE</li> <!-- 1814988282/vanillaexpanded.varme/`Vanilla Armour Expanded` -->
<li>AchievementsExpanded.Reward_RandomEvent/RandomEventRewardWitcher</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>AchievementsExpanded.Reward_RandomEvent/RandomEventReward</li> <!-- 2288125657/vanillaexpanded.achievements/`Vanilla Achievements Expanded` -->
<!-- randomquestitem -->
<li>AchievementsExpanded.Reward_RandomQuestItem/RandomRewardQuestItemVE</li> <!-- 1814383360/vanillaexpanded.vwe/`Vanilla Weapons Expanded` -->
<li>AchievementsExpanded.Reward_RandomQuestItem/RandomRewardQuestItemVE</li> <!-- 1814988282/vanillaexpanded.varme/`Vanilla Armour Expanded` -->
<li>AchievementsExpanded.Reward_RandomQuestItem/RandomRewardQuestItemWitcher</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>AchievementsExpanded.Reward_RandomQuestItem/RandomRewardQuestItem</li> <!-- 2288125657/vanillaexpanded.achievements/`Vanilla Achievements Expanded` -->
<!-- attachment -->
<li>ApparelLayerDef/DankPyon_ShellAttachment</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>ApparelLayerDef/DevDesigner_ShellAttachment</li> <!-- 2918728041/devdesigner.blood/`ↁ House Sanguin` -->
<!-- ontop -->
<li>ApparelLayerDef/VFEC_OuterShell</li> <!-- 2023507013/oskarpotocki.vanillafactionsexpanded.core/`Vanilla Expanded Framework` -->
<li>ApparelLayerDef/VFEC_OuterShell</li> <!-- 2478833213/sandy.rpgstyleinventory.avilmask.revamped/`RPG Style Inventory Revamped` -->
<!-- ring -->
<li>ApparelLayerDef/DankPyon_Ring1Layer</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>ApparelLayerDef/Ring</li> <!-- 2806324251/aranmaho.makai/`MakaiTech` -->
<!-- antleredquadruped -->
<li>BodyDef/Deerfox_AntleredQuadruped</li> <!-- 2818484342/zal.deerfox/`Hilda's Creatures - Deerfox (Continued)` -->
<li>BodyDef/AEXP_AntleredQuadruped</li> <!-- 2871933948/vanillaexpanded.vanillaanimalsexpanded/`Vanilla Animals Expanded` -->
<!-- arachnidbody -->
<li>BodyDef/VAE_Arachnid</li> <!-- 2576512001/vanillaexpanded.vaecaves/`Vanilla Animals Expanded — Caves` -->
<li>BodyDef/AA_Arachnid</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- aura -->
<li>BodyDef/AM_AuraBody</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyDef/AA_AuraBody</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- beetlelike -->
<li>BodyDef/BMT_BeetleLike</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyDef/pphhyy_BloodScarabBody</li> <!-- 2923829125/pphhyy.sanguinaryanimals/`pphhyy Sanguinary Animals` -->
<!-- bipedalotherdinosaurs -->
<li>BodyDef/BipedalOther</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyDef/BipedalOther</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- bipedalrunner -->
<li>BodyDef/BipedalRunner</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyDef/BipedalRunner</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- bipedanimal -->
<li>BodyDef/BipedAnimalWithClawsAndTail</li> <!-- 2726461020/mlie.creaturesofki/`Creatures of Ki (Continued)` -->
<li>BodyDef/SCR_Neck</li> <!-- 2728183627/deemainiac.securecontainrimworld/`Secure Contain Rimworld` -->
<!-- birdmimic -->
<li>BodyDef/BirdMimic</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyDef/BirdMimic</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- ceratopsid -->
<li>BodyDef/Ceratopsid</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyDef/Ceratopsid</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- colossus -->
<li>BodyDef/CrystalColossus</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>BodyDef/RE_Colossus</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<!-- daggersnout -->
<li>BodyDef/AM_DaggerSnoutBody</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyDef/AA_DaggerSnoutBody</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- demolisher -->
<li>BodyDef/AM_DemolisherBody</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyDef/AA_DemolisherBody</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyDef/MOW_Demolisher</li> <!-- 2853559638/el.mow/`Machines of War` -->
<!-- dragon -->
<li>BodyDef/QuadrupedAnimalWithPawsDragon</li> <!-- 1612308782/bichang.reddragon/`Red Dragon` -->
<li>BodyDef/QuadrupedeAnimalWithClawsDragon</li> <!-- 2026992161/onyxae.dragonsdescent/`Dragons Descent` -->
<li>BodyDef/Frilleus</li> <!-- 1612298388/bichang.frilleus/`Frilleus` -->
<li>BodyDef/BipedAnimalWithoutWingsDragon</li> <!-- 2185295561/ravvy.dd.void.addon/`[RWY]Dragon's Descent: Void Dwellers` -->
<!-- giantspider -->
<li>BodyDef/BMT_GiantSpider</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyDef/BMT_GiantSpider</li> <!-- 2538518381/biomesteam.oasis/`Biomes! Oasis` -->
<!-- golem -->
<li>BodyDef/DankPyon_Golem</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyDef/DND_GolemBody</li> <!-- 2751849453/mooloh.dndmenagerie/`Mooloh's Dnd Menagerie` -->
<!-- greatape -->
<li>BodyDef/GR_GreatApe</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyDef/AEXP_GreatApe_Bonobo</li> <!-- 2366589898/vanillaexpanded.vaeendandext/`Vanilla Animals Expanded — Endangered` -->
<li>BodyDef/VAERoy_GreatApe</li> <!-- 2858079457/vanillaexpanded.vaeroy/`Vanilla Animals Expanded — Royal Animals` -->
<li>BodyDef/AEXP_GreatApe</li> <!-- 2871933948/vanillaexpanded.vanillaanimalsexpanded/`Vanilla Animals Expanded` -->
<!-- gsdragon -->
<li>BodyDef/GS_Dragon</li> <!-- 2764736074/nexomon.x/`Nexomon` -->
<li>BodyDef/None</li> <!-- 2799361186/scaled.world/`Scaled World` -->
<!-- guardian -->
<li>BodyDef/Mech_Guardian</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>BodyDef/CrystalGuardian</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<!-- harpy -->
<li>BodyDef/RM_Mechanical_Harpy</li> <!-- 2910050186/hlx.reinforcedmechanoids2/`Reinforced Mechanoid 2` -->
<li>BodyDef/Harpy</li> <!-- 2014838309/moremonstergirls.rw/`More Monster Girls` -->
<!-- hydra -->
<li>BodyDef/GR_Hydra</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyDef/body_hydra</li> <!-- 2381100965/mlie.monstrouscompendium/`Monstrous Compendium (Continued)` -->
<li>BodyDef/VAEWaste_Hydra</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyDef/MM_Hydra</li> <!-- 1821617793/sarg.magicalmenagerie/`Alpha Mythology` -->
<!-- jellyfish -->
<li>BodyDef/GR_JellyfishBody</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyDef/AA_JellyfishBody</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyDef/WMH_JellyfishBody</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<!-- knucklehead -->
<li>BodyDef/Knucklehead</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyDef/Knucklehead</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- komodoanimal -->
<li>BodyDef/QuadrupedAnimalKomodo</li> <!-- 2207620932/hc.animal.4/`HC_Animal_4` -->
<li>BodyDef/QuadrupedAnimalKomodo</li> <!-- 2121892164/hc.animal.1/`HC_Animal_1` -->
<li>BodyDef/QuadrupedAnimalKomodo</li> <!-- 2188840249/hc.animal.2/`HC_Animal_2` -->
<!-- largelizardlike -->
<li>BodyDef/VAEWaste_LargeLizardlike</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyDef/AEXP_LargeLizardlike</li> <!-- 2871933948/vanillaexpanded.vanillaanimalsexpanded/`Vanilla Animals Expanded` -->
<!-- mantis -->
<li>BodyDef/Nem_Mantis</li> <!-- 847342844/nemtek.insects/`Insects!` -->
<li>BodyDef/Mantis</li> <!-- 2070686241/mlie.legacyark/`Legacy Ark` -->
<!-- mantislike -->
<li>BodyDef/MantisLike</li> <!-- 2038001322/biomesteam.biomesislands/`Biomes! Islands` -->
<li>BodyDef/BMT_MantisLike</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- mechanicalcentipede -->
<li>BodyDef/AM_SlurrypedeBody</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyDef/AA_SlurrypedeBody</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- mechanicalhovering -->
<li>BodyDef/AM_Assembler</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyDef/AA_Assembler</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- pangolinbodies -->
<li>BodyDef/HC_PangolinBodies</li> <!-- 2207620932/hc.animal.4/`HC_Animal_4` -->
<li>BodyDef/HC_PangolinBodies</li> <!-- 2121892164/hc.animal.1/`HC_Animal_1` -->
<!-- quadrupedanimal -->
<li>BodyDef/AnimaQuadrupedAnimalWithHoovesAndHorn</li> <!-- 2899149743/hh.xrushha.animaanimalscombined/`Anima Animals - Community Pack (temp)[HH]` -->
<li>BodyDef/ZEle_TusklessElephant</li> <!-- 2389095025/zylle.elephants/`Elephants` -->
<li>BodyDef/GR_QuadrupedAnimalWithPawsAndHorn</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyDef/QuadrupedAnimalWithPawsAndTails</li> <!-- 2764736074/nexomon.x/`Nexomon` -->
<li>BodyDef/BodyLongnose</li> <!-- 2208467668/acpteam.acpvanillastyle/`Animal Collab Project Vanilla-Style` -->
<li>BodyDef/MLW_QuadrupedAnimalWithHoovesAndHorns</li> <!-- 2937578941/mallow.aurochs/`Aurochs` -->
<li>BodyDef/QuadrupedAnimalWithPawsAndAntlers</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyDef/BMT_QuadrupedWithArmorBeakSpikesAndTailWeapon</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyDef/MHQuadrupedWithTail</li> <!-- 2798478679/asgalligator.mhrw/`Monster Hunter RimWorld` -->
<li>BodyDef/QuadrupedAnimalWithHoovesAndHorns</li> <!-- 2070686241/mlie.legacyark/`Legacy Ark` -->
<li>BodyDef/QuadrupedAnimalWhitefox</li> <!-- 1612303131/bichang.whitefox/`Sacred WhiteFox` -->
<li>BodyDef/Ninetailfox</li> <!-- 1612312286/bichang.kyulen/`Kyulen - NinetailFox` -->
<li>BodyDef/BMT_QuadrupedWithWingsBeakAndTailWeapon</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyDef/QuadrupedAnimalWithPawsAndAttackTail</li> <!-- 2120851909/armoredampharos.rodentpack/`Rodent Pack` -->
<li>BodyDef/HeadcrabBody</li> <!-- 2506160759/asgalligator.hlvrmonsters/`Half-Life Creatures` -->
<li>BodyDef/Hound_QuadrupedAnimalWithPawsTailAndFangs</li> <!-- 2033008242/mlie.rimstarve/`RimStarve (Continued)` -->
<li>BodyDef/QuadrupedEquid</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyDef/SCR_BipedalQuad</li> <!-- 2728183627/deemainiac.securecontainrimworld/`Secure Contain Rimworld` -->
<li>BodyDef/QuadrupedAnimalWithPawsTailAndFangs</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- raptor -->
<li>BodyDef/RaptorBody</li> <!-- 1710127259/ryflamer.rimcraft.animals/`[Ry]Rimcraft Animals` -->
<li>BodyDef/AA_RaptorBody</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- raptorlike -->
<li>BodyDef/RaptorLike</li> <!-- 2114991205/mlie.rimbeast/`RimBeast (Continued)` -->
<li>BodyDef/OERaptorLike</li> <!-- 2519492373/obsidiaexpansion.core/`Obsidia Expansion` -->
<!-- sauropod -->
<li>BodyDef/Sauropod</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyDef/Sauropod</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- scorpion -->
<li>BodyDef/BMT_Scorpion</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyDef/BMT_Scorpion</li> <!-- 2538518381/biomesteam.oasis/`Biomes! Oasis` -->
<li>BodyDef/Scorpion</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- scorpionlikebody -->
<li>BodyDef/AA_ScorpionLike</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyDef/VFEI_ScorpionLike</li> <!-- 2149755445/oskarpotocki.vfe.insectoid/`Vanilla Factions Expanded - Insectoids` -->
<li>BodyDef/VAEWaste_ScorpionLike</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyDef/AG_ScorpionLike</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<!-- siegebreaker -->
<li>BodyDef/AM_SiegebreakerBody</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyDef/AA_SiegebreakerBody</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- slime -->
<li>BodyDef/Body_Slime</li> <!-- 2381100965/mlie.monstrouscompendium/`Monstrous Compendium (Continued)` -->
<li>BodyDef/Slime</li> <!-- 2545507641/punkyroo.slimerancher/`Slime Rancher` -->
<li>BodyDef/Slime</li> <!-- 2014838309/moremonstergirls.rw/`More Monster Girls` -->
<!-- slug -->
<li>BodyDef/BiomesCore_Slug</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyDef/AA_ClawedSlug</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyDef/Slug</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<!-- snail -->
<li>BodyDef/BiomesCore_Snail</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyDef/AA_Snail</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyDef/SCR_Snail</li> <!-- 2728183627/deemainiac.securecontainrimworld/`Secure Contain Rimworld` -->
<!-- tailutilisinganimal -->
<li>BodyDef/JRWTailAttacker</li> <!-- 2567489721/mlie.jurassicrimworld/`Jurassic Rimworld (Continued)` -->
<li>BodyDef/JRWTailAttacker</li> <!-- 2567491934/mlie.jurassicrimworlddinosaursonly/`Jurassic Rimworld - Dinosaurs Only (Continued)` -->
<!-- theropod -->
<li>BodyDef/TheropodWithClaws</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyDef/RG-EAP-TheropodWithClaws</li> <!-- 2266685892/regrowth.botr.extinctanimalspack/`ReGrowth: Extinct Animals` -->
<li>BodyDef/TheropodWithClaws</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- thyreophoraewithclub -->
<li>BodyDef/ThyreophoraeWithClub</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyDef/ThyreophoraeWithClub</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- thyreophoraewithspikes -->
<li>BodyDef/ThyreophoraeWithSpikes</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyDef/ThyreophoraeWithSpikes</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- wingedquadrupedanimal -->
<li>BodyDef/RttR_WingedQuadrupedAnimalWithPawsAndTail</li> <!-- 2325478123/sargoskar.racetotherim/`Race to the Rim` -->
<li>BodyDef/AA_WingedQuadrupedAnimalWithPawsAndTail</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- wisp -->
<li>BodyDef/Bast_LimblessHoveringWisp</li> <!-- 2479431577/scurvyez.bastyon/`Steves Animals` -->
<li>BodyDef/MM_Wisp</li> <!-- 1821617793/sarg.magicalmenagerie/`Alpha Mythology` -->
<li>BodyDef/WMH_Wisp</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<!-- wyvern -->
<li>BodyDef/VAE_WyvernBody</li> <!-- 2576512001/vanillaexpanded.vaecaves/`Vanilla Animals Expanded — Caves` -->
<li>BodyDef/MHWyvern</li> <!-- 2798478679/asgalligator.mhrw/`Monster Hunter RimWorld` -->
<li>BodyDef/Wyvernbody</li> <!-- 2589837522/hc.creatures.1/`HC_Creatures_1` -->
<li>BodyDef/MM_WyvernBody</li> <!-- 1821617793/sarg.magicalmenagerie/`Alpha Mythology` -->
<!-- abdomen -->
<li>BodyPartDef/RB_Abdomen</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyPartDef/Nem_SAbdomen</li> <!-- 847342844/nemtek.insects/`Insects!` -->
<li>BodyPartDef/MorrowRim_Abdomen</li> <!-- 2457241117/sirmashedpotato.morrowrim.telvannispiders/`MorrowRim - Telvanni Spiders` -->
<li>BodyPartDef/Bast_Abdomen</li> <!-- 2479431577/scurvyez.bastyon/`Steves Animals` -->
<li>BodyPartDef/BMT_SpiderAbdomen</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyPartDef/BMT_SpiderAbdomen</li> <!-- 2538518381/biomesteam.oasis/`Biomes! Oasis` -->
<li>BodyPartDef/AA_Abdomen</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- antlers -->
<li>BodyPartDef/MM_Antlers</li> <!-- 1821617793/sarg.magicalmenagerie/`Alpha Mythology` -->
<li>BodyPartDef/Deerfox_Antlers</li> <!-- 2818484342/zal.deerfox/`Hilda's Creatures - Deerfox (Continued)` -->
<li>BodyPartDef/AEXP_Antlers</li> <!-- 2871933948/vanillaexpanded.vanillaanimalsexpanded/`Vanilla Animals Expanded` -->
<!-- arm -->
<li>BodyPartDef/VAE_InsectArm</li> <!-- 2576512001/vanillaexpanded.vaecaves/`Vanilla Animals Expanded — Caves` -->
<li>BodyPartDef/RE_CowArm</li> <!-- 2479560240/rimeffect.core/`Rim-Effect: Core` -->
<li>BodyPartDef/MechArm</li> <!-- 736172213/rimsenal.federation/`Rimsenal - Federation Faction Pack` -->
<li>BodyPartDef/WingArm</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>BodyPartDef/DankPyon_GolemArm</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/MorrowRim_Insect_Arm</li> <!-- 2443089362/sirmashedpotato.morrowrim/`MorrowRim` -->
<li>BodyPartDef/HSAU_TruVamp_Arm</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/RE_HuskArm</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<!-- auxiliarycentralmetallicplating -->
<li>BodyPartDef/AM_TankPlateFourth</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/AA_TankPlateFourth</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- auxiliaryfrontalmetallicplating -->
<li>BodyPartDef/AM_TankPlateSecond</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/AA_TankPlateSecond</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- auxiliaryrearmetallicplating -->
<li>BodyPartDef/AM_TankPlateSixth</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/AA_TankPlateSixth</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- back -->
<li>BodyPartDef/BMT_Back</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/BMT_Back</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- beak -->
<li>BodyPartDef/BMT_DinoBeak</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/WyvernBeak</li> <!-- 2798478679/asgalligator.mhrw/`Monster Hunter RimWorld` -->
<li>BodyPartDef/BMT_DinoBeak</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- bladefeathercrest -->
<li>BodyPartDef/BMT_FeatherCrest</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/BMT_FeatherCrest</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- body -->
<li>BodyPartDef/SeaCucumberBody</li> <!-- 2906214036/tigerblut.seacucumberchonk/`Pet Cucumber - Chonk Version` -->
<li>BodyPartDef/GR_JellyfishMainBody</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyPartDef/PW_LevitatingOrMovingBody</li> <!-- 2652029657/gargamiel.pokeworld/`PokéWorld` -->
<li>BodyPartDef/SlimeBody</li> <!-- 2545507641/punkyroo.slimerancher/`Slime Rancher` -->
<li>BodyPartDef/AA_BoatBody</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/MorrowRim_LeechBody</li> <!-- 2443089362/sirmashedpotato.morrowrim/`MorrowRim` -->
<li>BodyPartDef/SlugBody</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyPartDef/FemaleMeatPigBody</li> <!-- 2907771063/tigerblut.meatpigs/`Meat Pigs` -->
<li>BodyPartDef/RE_HuskBody</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<li>BodyPartDef/DND_Large_Body</li> <!-- 2751849453/mooloh.dndmenagerie/`Mooloh's Dnd Menagerie` -->
<!-- bonycoredplates -->
<li>BodyPartDef/BMT_OsteodermPlates</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/BMT_OsteodermPlates</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- bonycoredscales -->
<li>BodyPartDef/BMT_Osteoderm</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/BMT_Osteoderm</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- bonycoredspikes -->
<li>BodyPartDef/BMT_OsteodermSpikes</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/BMT_OsteodermSpikes</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- brain -->
<li>BodyPartDef/HSAU_TruVamp_Brain</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/DND_Psychic_Flyer_Brain</li> <!-- 2751849453/mooloh.dndmenagerie/`Mooloh's Dnd Menagerie` -->
<!-- caphalothorax -->
<li>BodyPartDef/BMT_Cephalothorax</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyPartDef/BMT_Cephalothorax</li> <!-- 2538518381/biomesteam.oasis/`Biomes! Oasis` -->
<!-- centralmetallicplating -->
<li>BodyPartDef/AM_TankPlateThird</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/AA_TankPlateThird</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- cephalothorax -->
<li>BodyPartDef/Nem_Cephalothorax</li> <!-- 847342844/nemtek.insects/`Insects!` -->
<li>BodyPartDef/MorrowRim_Cephalothorax</li> <!-- 2457241117/sirmashedpotato.morrowrim.telvannispiders/`MorrowRim - Telvanni Spiders` -->
<!-- claw -->
<li>BodyPartDef/RG-EAP_FootClaw</li> <!-- 2266685892/regrowth.botr.extinctanimalspack/`ReGrowth: Extinct Animals` -->
<li>BodyPartDef/MClaw</li> <!-- 1710127259/ryflamer.rimcraft.animals/`[Ry]Rimcraft Animals` -->
<li>BodyPartDef/AM_MechanicalClaw</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/LegClaw</li> <!-- 2114991205/mlie.rimbeast/`RimBeast (Continued)` -->
<li>BodyPartDef/AA_MechanicalClaw</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/Claw</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- club -->
<li>BodyPartDef/Club</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyPartDef/SW_Club</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- core -->
<li>BodyPartDef/SlimeCore</li> <!-- 2381100965/mlie.monstrouscompendium/`Monstrous Compendium (Continued)` -->
<li>BodyPartDef/Core</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/TyphonCore</li> <!-- 2752054193/caaz.typhon/`Typhon` -->
<li>BodyPartDef/CrystalAnimaCore</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>BodyPartDef/AlienCore</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyPartDef/WVC_FormerCore</li> <!-- 2875630809/wvc.sergkart.core/`WVC - Ultra Expansion` -->
<!-- crest -->
<li>BodyPartDef/Crest</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyPartDef/Crest</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- cytoplasm -->
<li>BodyPartDef/MM_Cytoplasm</li> <!-- 1821617793/sarg.magicalmenagerie/`Alpha Mythology` -->
<li>BodyPartDef/WMH_Cytoplasm</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<!-- eye -->
<li>BodyPartDef/AA_EyeBody</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/HSAU_TruVamp_Eye</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/ROM_Eye</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- eyestalk -->
<li>BodyPartDef/CoA_SnailEyeStalk</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/Bast_SnailEyeStalk</li> <!-- 2479431577/scurvyez.bastyon/`Steves Animals` -->
<li>BodyPartDef/RWBRightEyeStalk</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyPartDef/AA_SnailEyeStalk</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/DND_Eyestalk</li> <!-- 2751849453/mooloh.dndmenagerie/`Mooloh's Dnd Menagerie` -->
<!-- fangs -->
<li>BodyPartDef/GR_Fangs</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyPartDef/Fangs</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- fifthbodyring -->
<li>BodyPartDef/MechanicalDragonBodyFifthRing</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>BodyPartDef/ROM_ChthonianFifthRing</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- fin -->
<li>BodyPartDef/BiomesIslands_Fin</li> <!-- 2038001322/biomesteam.biomesislands/`Biomes! Islands` -->
<li>BodyPartDef/PW_Fin</li> <!-- 2652029657/gargamiel.pokeworld/`PokéWorld` -->
<!-- finger -->
<li>BodyPartDef/RE_CowFinger</li> <!-- 2479560240/rimeffect.core/`Rim-Effect: Core` -->
<li>BodyPartDef/MechFinger</li> <!-- 736172213/rimsenal.federation/`Rimsenal - Federation Faction Pack` -->
<li>BodyPartDef/Claw</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>BodyPartDef/DankPyon_GolemFinger</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/CrystalHumanFinger</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>BodyPartDef/HSAU_Ghoul_Finger</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/RE_HuskFinger</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<!-- firstbodyring -->
<li>BodyPartDef/MechanicalDragonBodyFirstRing</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>BodyPartDef/ROM_ChthonianFirstRing</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- firstbodysegment -->
<li>BodyPartDef/AA_FirstWormSegment</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/CentipedeFirstSegment</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- foot -->
<li>BodyPartDef/CoA_SnailBody</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/RM_MechanicalFootBehemoth</li> <!-- 2910050186/hlx.reinforcedmechanoids2/`Reinforced Mechanoid 2` -->
<li>BodyPartDef/MechFoot</li> <!-- 736172213/rimsenal.federation/`Rimsenal - Federation Faction Pack` -->
<li>BodyPartDef/DankPyon_GolemFoot</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/CrystalHumanFoot</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>BodyPartDef/HSAU_TruVamp_Foot</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/RE_HuskFoot</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<!-- fourthbodysegment -->
<li>BodyPartDef/AA_FourthWormSegment</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/CentipedeFourthSegment</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- frame -->
<li>BodyPartDef/VFEP_Frame</li> <!-- 2723801948/oskarpotocki.vfe.pirates/`Vanilla Factions Expanded - Pirates` -->
<li>BodyPartDef/WVC_FormerFrame</li> <!-- 2875630809/wvc.sergkart.core/`WVC - Ultra Expansion` -->
<!-- frontalmetallicplating -->
<li>BodyPartDef/AM_TankPlateFirst</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/AA_TankPlateFirst</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- frontclaw -->
<li>BodyPartDef/BMT_FrontClaw</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/BMT_FrontClaw</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyPartDef/AA_FrontClaw</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/VFEI_FrontClaw</li> <!-- 2149755445/oskarpotocki.vfe.insectoid/`Vanilla Factions Expanded - Insectoids` -->
<!-- gill -->
<li>BodyPartDef/BiomesIslands_FishGill</li> <!-- 2038001322/biomesteam.biomesislands/`Biomes! Islands` -->
<li>BodyPartDef/PW_Gill</li> <!-- 2652029657/gargamiel.pokeworld/`PokéWorld` -->
<li>BodyPartDef/BMT_AmmoniteGill</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<!-- hand -->
<li>BodyPartDef/RE_CowHand</li> <!-- 2479560240/rimeffect.core/`Rim-Effect: Core` -->
<li>BodyPartDef/MechHand</li> <!-- 736172213/rimsenal.federation/`Rimsenal - Federation Faction Pack` -->
<li>BodyPartDef/WingSegment</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>BodyPartDef/DankPyon_GolemHand</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/HSAU_TruVamp_Hand</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/RE_HuskHand</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<!-- head -->
<li>BodyPartDef/SeaCucumberHead</li> <!-- 2906214036/tigerblut.seacucumberchonk/`Pet Cucumber - Chonk Version` -->
<li>BodyPartDef/PW_LevitatingOrMovingHead</li> <!-- 2652029657/gargamiel.pokeworld/`PokéWorld` -->
<li>BodyPartDef/CoA_SnailHead</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/RM_MechanicalHeadSentinel</li> <!-- 2910050186/hlx.reinforcedmechanoids2/`Reinforced Mechanoid 2` -->
<li>BodyPartDef/MechHead</li> <!-- 736172213/rimsenal.federation/`Rimsenal - Federation Faction Pack` -->
<li>BodyPartDef/DankPyon_GolemHead</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/AA_BoatHead</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/CrystalHumanHead</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>BodyPartDef/AlienHead</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyPartDef/HSAU_TruVamp_Head</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/RE_HuskHead</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<li>BodyPartDef/DND_Medusa_Main_Head</li> <!-- 2751849453/mooloh.dndmenagerie/`Mooloh's Dnd Menagerie` -->
<!-- heart -->
<li>BodyPartDef/ZergHeart</li> <!-- 1542306804/alexzergling.zerg/`The Zerg!` -->
<li>BodyPartDef/Heart</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/HSAU_TruVamp_Heart</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<!-- hood -->
<li>BodyPartDef/BMT_AmmoniteHood</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/CoolantBeadMainBody</li> <!-- 2411530277/mlie.kolrascoolantbeads/`Kolra's Coolant Beads (Continued)` -->
<li>BodyPartDef/AA_JellyfishMainBody</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/WMH_JellyfishMainBody</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>BodyPartDef/OEBruulHood</li> <!-- 2519492373/obsidiaexpansion.core/`Obsidia Expansion` -->
<!-- horns -->
<li>BodyPartDef/MLW_Horns</li> <!-- 2937578941/mallow.aurochs/`Aurochs` -->
<li>BodyPartDef/WyvernHorns</li> <!-- 2798478679/asgalligator.mhrw/`Monster Hunter RimWorld` -->
<li>BodyPartDef/MM_Horns</li> <!-- 1821617793/sarg.magicalmenagerie/`Alpha Mythology` -->
<!-- hoverenginenozzle -->
<li>BodyPartDef/AM_HoverEngineNozzle</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/AA_HoverEngineNozzle</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- hydrogensac -->
<li>BodyPartDef/AA_BoatHydrogenSac</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/WMH_HydrogenSac</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>BodyPartDef/OEBruulHydrogenSac</li> <!-- 2519492373/obsidiaexpansion.core/`Obsidia Expansion` -->
<!-- jaw -->
<li>BodyPartDef/AlienJaw</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyPartDef/HSAU_TruVamp_Jaw</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/WVC_FormerJaw</li> <!-- 2875630809/wvc.sergkart.core/`WVC - Ultra Expansion` -->
<!-- kidney -->
<li>BodyPartDef/Kidney</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/HSAU_TruVamp_Kidney</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/ROM_Kidney</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- knucklehead -->
<li>BodyPartDef/Knucklehead</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyPartDef/Knucklehead</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- leftarm -->
<li>BodyPartDef/LeftAnimalArm</li> <!-- 1542306804/alexzergling.zerg/`The Zerg!` -->
<li>BodyPartDef/CrystalHumanArm</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>BodyPartDef/LeftAnimalArm</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- leftclaw -->
<li>BodyPartDef/LeftClaw</li> <!-- 1542306804/alexzergling.zerg/`The Zerg!` -->
<li>BodyPartDef/LeftClaw</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<li>BodyPartDef/ROM_LeftClaw</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- lefthorn -->
<li>BodyPartDef/Beefalo_LeftHorn</li> <!-- 2033008242/mlie.rimstarve/`RimStarve (Continued)` -->
<li>BodyPartDef/LeftHorn</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- leftpedipalp -->
<li>BodyPartDef/BMT_LeftPedipalp</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyPartDef/BMT_LeftPedipalp</li> <!-- 2538518381/biomesteam.oasis/`Biomes! Oasis` -->
<!-- leftpincer -->
<li>BodyPartDef/FrontLeftPincer</li> <!-- 2208467668/acpteam.acpvanillastyle/`Animal Collab Project Vanilla-Style` -->
<li>BodyPartDef/AA_LeftPincer</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/VFEI_LeftPincer</li> <!-- 2149755445/oskarpotocki.vfe.insectoid/`Vanilla Factions Expanded - Insectoids` -->
<li>BodyPartDef/VAEWaste_LeftPincer</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyPartDef/AG_LeftPincer</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<!-- leftwing -->
<li>BodyPartDef/GryphonLeftWing</li> <!-- 2381100965/mlie.monstrouscompendium/`Monstrous Compendium (Continued)` -->
<li>BodyPartDef/ROM_LeftWing</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- leg -->
<li>BodyPartDef/RM_MechanicalLegBehemoth</li> <!-- 2910050186/hlx.reinforcedmechanoids2/`Reinforced Mechanoid 2` -->
<li>BodyPartDef/MechLeg</li> <!-- 736172213/rimsenal.federation/`Rimsenal - Federation Faction Pack` -->
<li>BodyPartDef/DankPyon_GolemLeg</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/TyphonMimicLeg</li> <!-- 2752054193/caaz.typhon/`Typhon` -->
<li>BodyPartDef/AlienLeg</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyPartDef/HSAU_TruVamp_Leg</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/RE_HuskLeg</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<li>BodyPartDef/ROM_Leg</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- liver -->
<li>BodyPartDef/Liver</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/HSAU_TruVamp_Liver</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<!-- lung -->
<li>BodyPartDef/Lung</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/SlugLung</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyPartDef/HSAU_TruVamp_Lung</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/ROM_Lung</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- metalcarapace -->
<li>BodyPartDef/AM_MechanicalBodyCarapace</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/AA_MechanicalBodyCarapace</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- mouth -->
<li>BodyPartDef/SeaCucumberMouth</li> <!-- 2906214036/tigerblut.seacucumberchonk/`Pet Cucumber - Chonk Version` -->
<li>BodyPartDef/RB_InsectMouth</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyPartDef/CoA_SnailMouth</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/Bast_InsectMouth</li> <!-- 2479431577/scurvyez.bastyon/`Steves Animals` -->
<li>BodyPartDef/RWBSnailMouth</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyPartDef/SlimeMouth</li> <!-- 2545507641/punkyroo.slimerancher/`Slime Rancher` -->
<li>BodyPartDef/DankPyon_InsectMouth</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/AA_InsectMouth</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/VAEWaste_InsectMouth</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyPartDef/SlimeMouth</li> <!-- 2014838309/moremonstergirls.rw/`More Monster Girls` -->
<li>BodyPartDef/AG_InsectMouth</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<!-- neck -->
<li>BodyPartDef/RM_MechanicalNeckBehemoth</li> <!-- 2910050186/hlx.reinforcedmechanoids2/`Reinforced Mechanoid 2` -->
<li>BodyPartDef/MechNeck</li> <!-- 736172213/rimsenal.federation/`Rimsenal - Federation Faction Pack` -->
<li>BodyPartDef/DankPyon_LindwurmNeck</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/CrystalHumanNeck</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>BodyPartDef/AlienNeck</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyPartDef/HSAU_TruVamp_Neck</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/RE_HuskNeck</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<!-- neckfrill -->
<li>BodyPartDef/BMT_NeckFrill</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/BMT_NeckFrill</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- nucleus -->
<li>BodyPartDef/Bast_Nucleus</li> <!-- 2479431577/scurvyez.bastyon/`Steves Animals` -->
<li>BodyPartDef/AA_Nucleus</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- paw -->
<li>BodyPartDef/NinefoxPaw</li> <!-- 1612312286/bichang.kyulen/`Kyulen - NinetailFox` -->
<li>BodyPartDef/AlienPaw</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<!-- pincer -->
<li>BodyPartDef/PW_Pincer</li> <!-- 2652029657/gargamiel.pokeworld/`PokéWorld` -->
<li>BodyPartDef/Pincer</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- plasmamembrane -->
<li>BodyPartDef/MM_PlasmaMembrane</li> <!-- 1821617793/sarg.magicalmenagerie/`Alpha Mythology` -->
<li>BodyPartDef/WMH_PlasmaMembrane</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<!-- propeller -->
<li>BodyPartDef/VFEP_Propeller</li> <!-- 2723801948/oskarpotocki.vfe.pirates/`Vanilla Factions Expanded - Pirates` -->
<li>BodyPartDef/PRFPropeller</li> <!-- 2033979700/spdskatr.projectrimfactory/`Project RimFactory Revived` -->
<!-- rearclaw -->
<li>BodyPartDef/BMT_RearClaw</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/BMT_RearClaw</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- rearmetallicplating -->
<li>BodyPartDef/AM_TankPlateFifth</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/AA_TankPlateFifth</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- rightarm -->
<li>BodyPartDef/RightAnimalArm</li> <!-- 1542306804/alexzergling.zerg/`The Zerg!` -->
<li>BodyPartDef/CrystalRightArm</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>BodyPartDef/RightAnimalArm</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- rightclaw -->
<li>BodyPartDef/RightClaw</li> <!-- 1542306804/alexzergling.zerg/`The Zerg!` -->
<li>BodyPartDef/RightClaw</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<li>BodyPartDef/ROM_RightClaw</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- righthorn -->
<li>BodyPartDef/Beefalo_RightHorn</li> <!-- 2033008242/mlie.rimstarve/`RimStarve (Continued)` -->
<li>BodyPartDef/RightHorn</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- rightpedipalp -->
<li>BodyPartDef/BMT_RightPedipalp</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyPartDef/BMT_RightPedipalp</li> <!-- 2538518381/biomesteam.oasis/`Biomes! Oasis` -->
<!-- rightpincer -->
<li>BodyPartDef/FrontRightPincer</li> <!-- 2208467668/acpteam.acpvanillastyle/`Animal Collab Project Vanilla-Style` -->
<li>BodyPartDef/AA_RightPincer</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/VFEI_RightPincer</li> <!-- 2149755445/oskarpotocki.vfe.insectoid/`Vanilla Factions Expanded - Insectoids` -->
<li>BodyPartDef/VAEWaste_RightPincer</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyPartDef/AG_RightPincer</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<!-- rightwing -->
<li>BodyPartDef/GryphonRightWing</li> <!-- 2381100965/mlie.monstrouscompendium/`Monstrous Compendium (Continued)` -->
<li>BodyPartDef/ROM_RightWing</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- rockyhead -->
<li>BodyPartDef/WMH_RockHead</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>BodyPartDef/VPE_RockHead</li> <!-- 2842502659/vanillaexpanded.vpsycastse/`Vanilla Psycasts Expanded` -->
<!-- scorpiontail -->
<li>BodyPartDef/VAE_ScorpionTail</li> <!-- 2576512001/vanillaexpanded.vaecaves/`Vanilla Animals Expanded — Caves` -->
<li>BodyPartDef/MM_ScorpionTail</li> <!-- 1821617793/sarg.magicalmenagerie/`Alpha Mythology` -->
<!-- secondbodyring -->
<li>BodyPartDef/MechanicalDragonBodySecondRing</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>BodyPartDef/ROM_ChthonianSecondRing</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- secondbodysegment -->
<li>BodyPartDef/AA_SecondWormSegment</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/CentipedeSecondSegment</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- shell -->
<li>BodyPartDef/ZHY_SnailephantShell</li> <!-- 2531718666/zylle.hybridanimals/`Hybrid Animals` -->
<li>BodyPartDef/CoA_SnailShell</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/RM_MechanicalShellCaretaker</li> <!-- 2910050186/hlx.reinforcedmechanoids2/`Reinforced Mechanoid 2` -->
<li>BodyPartDef/MouseShell</li> <!-- 2120851909/armoredampharos.rodentpack/`Rodent Pack` -->
<li>BodyPartDef/ColossusShell</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>BodyPartDef/MorrowRim_Netch_Shell</li> <!-- 2443089362/sirmashedpotato.morrowrim/`MorrowRim` -->
<li>BodyPartDef/OETionantShell</li> <!-- 2519492373/obsidiaexpansion.core/`Obsidia Expansion` -->
<li>BodyPartDef/GlyptodonShell</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- shoulder -->
<li>BodyPartDef/RM_MechanicalShoulderZealot</li> <!-- 2910050186/hlx.reinforcedmechanoids2/`Reinforced Mechanoid 2` -->
<li>BodyPartDef/MechShoulder</li> <!-- 736172213/rimsenal.federation/`Rimsenal - Federation Faction Pack` -->
<li>BodyPartDef/MechanicalDragonShoulder</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>BodyPartDef/DankPyon_GolemShoulder</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/HSAU_TruVamp_Shoulder</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/RE_HuskShoulder</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<!-- sickleclaw -->
<li>BodyPartDef/FootClaw</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyPartDef/FootClaw</li> <!-- 1710127259/ryflamer.rimcraft.animals/`[Ry]Rimcraft Animals` -->
<li>BodyPartDef/BMT_RearSickleClaw</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/BMT_RearSickleClaw</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyPartDef/OEFootClaw</li> <!-- 2519492373/obsidiaexpansion.core/`Obsidia Expansion` -->
<!-- skeletalarm -->
<li>BodyPartDef/MorrowRim_SkeletalArm</li> <!-- 2750187360/sirmashedpotato.morrowrim.bonewalkers/`MorrowRim - Bonewalkers` -->
<li>BodyPartDef/VPE_SkeletalArm</li> <!-- 2842502659/vanillaexpanded.vpsycastse/`Vanilla Psycasts Expanded` -->
<!-- skull -->
<li>BodyPartDef/HSAU_TruVamp_Skull</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/VPE_Skull</li> <!-- 2842502659/vanillaexpanded.vpsycastse/`Vanilla Psycasts Expanded` -->
<!-- skulldome -->
<li>BodyPartDef/SkullDome</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyPartDef/SkullDome</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- smallleg -->
<li>BodyPartDef/RB_SmallInsectLeg</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyPartDef/Bast_SmallInsectLeg</li> <!-- 2479431577/scurvyez.bastyon/`Steves Animals` -->
<li>BodyPartDef/AA_SmallInsectLeg</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- snailfoot -->
<li>BodyPartDef/ZHY_SnailephantFoot</li> <!-- 2531718666/zylle.hybridanimals/`Hybrid Animals` -->
<li>BodyPartDef/RWBSnailFoot</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- spike -->
<li>BodyPartDef/TyphonSpike</li> <!-- 2752054193/caaz.typhon/`Typhon` -->
<li>BodyPartDef/WVC_Automaton_Spike</li> <!-- 2875630809/wvc.sergkart.core/`WVC - Ultra Expansion` -->
<!-- spikes -->
<li>BodyPartDef/Spikes</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyPartDef/RG_Spikes</li> <!-- 2266685892/regrowth.botr.extinctanimalspack/`ReGrowth: Extinct Animals` -->
<li>BodyPartDef/Spikes</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- spine -->
<li>BodyPartDef/ZergSpine</li> <!-- 1542306804/alexzergling.zerg/`The Zerg!` -->
<li>BodyPartDef/HSAU_TruVamp_Spine</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<!-- stinger -->
<li>BodyPartDef/RB_InsectSting</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyPartDef/InsectStinger</li> <!-- 2208467668/acpteam.acpvanillastyle/`Animal Collab Project Vanilla-Style` -->
<li>BodyPartDef/BMT_Stinger</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyPartDef/BMT_Stinger</li> <!-- 2538518381/biomesteam.oasis/`Biomes! Oasis` -->
<li>BodyPartDef/AA_InsectSting</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/VFEI_InsectSting</li> <!-- 2149755445/oskarpotocki.vfe.insectoid/`Vanilla Factions Expanded - Insectoids` -->
<li>BodyPartDef/SZ_SeXieSting</li> <!-- 2942068661/andery233xj.chiteaditional.ancientchinesebeast/`[SZ]Ancient Chinese Beast And Gene Expanded 山海志怪-神州凶兽和基因扩展` -->
<li>BodyPartDef/VAEWaste_InsectSting</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyPartDef/Stinger</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyPartDef/AG_InsectSting</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<li>BodyPartDef/Stinger</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- stomach -->
<li>BodyPartDef/Stomach</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartDef/HSAU_TruVamp_Stomach</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<!-- tail -->
<li>BodyPartDef/FishTail</li> <!-- 2038001322/biomesteam.biomesislands/`Biomes! Islands` -->
<li>BodyPartDef/HydraliskTail</li> <!-- 1542306804/alexzergling.zerg/`The Zerg!` -->
<li>BodyPartDef/VAA_Tail</li> <!-- 2073559411/hatena.voiceroidasanimal/`VoiceroidAsAnimal` -->
<li>BodyPartDef/BMT_Tail</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/MorphTail</li> <!-- 1786466855/tachyonite.pawnmorpherpublic/`Pawnmorpher` -->
<li>BodyPartDef/Comodo_Tail</li> <!-- 2207620932/hc.animal.4/`HC_Animal_4` -->
<li>BodyPartDef/WhitefoxTail</li> <!-- 1612303131/bichang.whitefox/`Sacred WhiteFox` -->
<li>BodyPartDef/NinefoxTail</li> <!-- 1612312286/bichang.kyulen/`Kyulen - NinetailFox` -->
<li>BodyPartDef/FrilleusTail</li> <!-- 1612298388/bichang.frilleus/`Frilleus` -->
<li>BodyPartDef/BMT_TailTip</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<li>BodyPartDef/DankPyon_LindwurmTail</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/AA_TailLeg</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/VFEI_InsectTail</li> <!-- 2149755445/oskarpotocki.vfe.insectoid/`Vanilla Factions Expanded - Insectoids` -->
<li>BodyPartDef/Comodo_Tail</li> <!-- 2121892164/hc.animal.1/`HC_Animal_1` -->
<li>BodyPartDef/VAEWaste_InsectTail</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyPartDef/AlienTail</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyPartDef/Tail</li> <!-- 2589837522/hc.creatures.1/`HC_Creatures_1` -->
<li>BodyPartDef/Comodo_Tail</li> <!-- 2188840249/hc.animal.2/`HC_Animal_2` -->
<li>BodyPartDef/AG_InsectTail</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<li>BodyPartDef/InsectTail</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<li>BodyPartDef/DND_Huge_Tail</li> <!-- 2751849453/mooloh.dndmenagerie/`Mooloh's Dnd Menagerie` -->
<!-- tentacle -->
<li>BodyPartDef/PW_Tentacle</li> <!-- 2652029657/gargamiel.pokeworld/`PokéWorld` -->
<li>BodyPartDef/BMT_AmmoniteTentacle</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/AA_SquidTentacle</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/MorrowRim_Netch_Tentacle</li> <!-- 2443089362/sirmashedpotato.morrowrim/`MorrowRim` -->
<li>BodyPartDef/WMH_JellyfishTentacle</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>BodyPartDef/OEBruulTentacle</li> <!-- 2519492373/obsidiaexpansion.core/`Obsidia Expansion` -->
<li>BodyPartDef/DND_Displacer_Tentacle</li> <!-- 2751849453/mooloh.dndmenagerie/`Mooloh's Dnd Menagerie` -->
<li>BodyPartDef/ROM_Tentacle</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- thirdbodyring -->
<li>BodyPartDef/MechanicalDragonBodyThirdRing</li> <!-- 2968750452/blackmarket420.kraltechindustries/`Kraltech Industries` -->
<li>BodyPartDef/ROM_ChthonianThirdRing</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- thirdbodysegment -->
<li>BodyPartDef/AA_ThirdWormSegment</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/CentipedeThirdSegment</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- thorax -->
<li>BodyPartDef/RB_Thorax</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyPartDef/Nem_Thorax</li> <!-- 847342844/nemtek.insects/`Insects!` -->
<li>BodyPartDef/VAE_Thorax</li> <!-- 2576512001/vanillaexpanded.vaecaves/`Vanilla Animals Expanded — Caves` -->
<li>BodyPartDef/RM_MechanicalThoraxSentinel</li> <!-- 2910050186/hlx.reinforcedmechanoids2/`Reinforced Mechanoid 2` -->
<li>BodyPartDef/Bast_Thorax</li> <!-- 2479431577/scurvyez.bastyon/`Steves Animals` -->
<li>BodyPartDef/DankPyon_Thorax</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/AA_Thorax</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/VFEI_Thorax</li> <!-- 2149755445/oskarpotocki.vfe.insectoid/`Vanilla Factions Expanded - Insectoids` -->
<li>BodyPartDef/TyphonThorax</li> <!-- 2752054193/caaz.typhon/`Typhon` -->
<li>BodyPartDef/VAEWaste_Thorax</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyPartDef/AlienThorax</li> <!-- 2041001435/dey.beasts.of.the.rim/`Beasts of the Rim` -->
<li>BodyPartDef/OEArachnaThorax</li> <!-- 2519492373/obsidiaexpansion.core/`Obsidia Expansion` -->
<li>BodyPartDef/AG_Thorax</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<!-- thumbspike -->
<li>BodyPartDef/BMT_FrontThumbSpike</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartDef/BMT_FrontThumbSpike</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- toe -->
<li>BodyPartDef/HSAU_TruVamp_Toe</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/RE_HuskToe</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<!-- torso -->
<li>BodyPartDef/MechTorso</li> <!-- 736172213/rimsenal.federation/`Rimsenal - Federation Faction Pack` -->
<li>BodyPartDef/DankPyon_GolemTorso</li> <!-- 2553700067/dankpyon.medieval.overhaul/`Medieval Overhaul` -->
<li>BodyPartDef/CrystalHumanTorso</li> <!-- 1571323744/atomicravioli.crystalloid/`Crystalloid` -->
<li>BodyPartDef/HSAU_ArtVamp_Torso</li> <!-- 2834801420/baskerville.hellsingarmsultimate/`Hellsing ARMS Ultimate` -->
<li>BodyPartDef/RE_HuskTorso</li> <!-- 2651149728/rimeffect.asarireapers/`Rim-Effect: Asari and Reapers` -->
<!-- turret -->
<li>BodyPartDef/VFEP_Turret</li> <!-- 2723801948/oskarpotocki.vfe.pirates/`Vanilla Factions Expanded - Pirates` -->
<li>BodyPartDef/AM_TankTurret</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/AA_TankTurret</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- wing -->
<li>BodyPartDef/Wing</li> <!-- 1612308782/bichang.reddragon/`Red Dragon` -->
<li>BodyPartDef/RB_InsectWing</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyPartDef/Wing</li> <!-- 2026992161/onyxae.dragonsdescent/`Dragons Descent` -->
<li>BodyPartDef/Wing</li> <!-- 2764736074/nexomon.x/`Nexomon` -->
<li>BodyPartDef/Zerglingwing</li> <!-- 1542306804/alexzergling.zerg/`The Zerg!` -->
<li>BodyPartDef/PW_Wing</li> <!-- 2652029657/gargamiel.pokeworld/`PokéWorld` -->
<li>BodyPartDef/VAE_Wing</li> <!-- 2576512001/vanillaexpanded.vaecaves/`Vanilla Animals Expanded — Caves` -->
<li>BodyPartDef/PawnmorphWing</li> <!-- 1786466855/tachyonite.pawnmorpherpublic/`Pawnmorpher` -->
<li>BodyPartDef/WyvernWing</li> <!-- 2798478679/asgalligator.mhrw/`Monster Hunter RimWorld` -->
<li>BodyPartDef/Wing</li> <!-- 2799361186/scaled.world/`Scaled World` -->
<li>BodyPartDef/RttR_Wing</li> <!-- 2325478123/sargoskar.racetotherim/`Race to the Rim` -->
<li>BodyPartDef/Bast_Wing</li> <!-- 2479431577/scurvyez.bastyon/`Steves Animals` -->
<li>BodyPartDef/AA_InsectWing</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartDef/SZ_BeastWing</li> <!-- 2942068661/andery233xj.chiteaditional.ancientchinesebeast/`[SZ]Ancient Chinese Beast And Gene Expanded 山海志怪-神州凶兽和基因扩展` -->
<li>BodyPartDef/MorrowRim_CliffRacer_Wing</li> <!-- 2443089362/sirmashedpotato.morrowrim/`MorrowRim` -->
<li>BodyPartDef/Wing</li> <!-- 1612305760/bichang.huri/`Huri` -->
<li>BodyPartDef/MM_Wing</li> <!-- 1821617793/sarg.magicalmenagerie/`Alpha Mythology` -->
<li>BodyPartDef/WMH_Wing</li> <!-- 2008529522/sargoskar.witcherhunt/`RimWorld - Witcher Monster Hunt` -->
<li>BodyPartDef/pphhyy_Vargulf_Wing</li> <!-- 2923829125/pphhyy.sanguinaryanimals/`pphhyy Sanguinary Animals` -->
<li>BodyPartDef/InsectWing</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<li>BodyPartDef/DND_ButterflyWing</li> <!-- 2751849453/mooloh.dndmenagerie/`Mooloh's Dnd Menagerie` -->
<!-- wingblade -->
<li>BodyPartDef/AM_MechanoidWing</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartDef/AA_MechanoidWing</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- armclaws -->
<li>BodyPartGroupDef/ArmClawAttackTool</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyPartGroupDef/ArmClawAttackTool</li> <!-- 1710127259/ryflamer.rimcraft.animals/`[Ry]Rimcraft Animals` -->
<li>BodyPartGroupDef/ArmClawAttackTool</li> <!-- 2963595062/deon.borderlands14/`Borderlands: The Rim` -->
<!-- beak -->
<li>BodyPartGroupDef/BMT_DinoBeakAttackTool</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartGroupDef/Beak</li> <!-- 2798478679/asgalligator.mhrw/`Monster Hunter RimWorld` -->
<li>BodyPartGroupDef/BMT_DinoBeakAttackTool</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- bladefeather -->
<li>BodyPartGroupDef/BMT_BladeFeatherAttackTool</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartGroupDef/BMT_BladeFeatherAttackTool</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- body -->
<li>BodyPartGroupDef/Bast_Body</li> <!-- 2479431577/scurvyez.bastyon/`Steves Animals` -->
<li>BodyPartGroupDef/AA_Body</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartGroupDef/DND_BodySlamTool</li> <!-- 2751849453/mooloh.dndmenagerie/`Mooloh's Dnd Menagerie` -->
<li>BodyPartGroupDef/ROM_BodyAttackTool</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- claws -->
<li>BodyPartGroupDef/RG_ArmClawAttackTool</li> <!-- 2266685892/regrowth.botr.extinctanimalspack/`ReGrowth: Extinct Animals` -->
<li>BodyPartGroupDef/VAE_Arms</li> <!-- 2576512001/vanillaexpanded.vaecaves/`Vanilla Animals Expanded — Caves` -->
<li>BodyPartGroupDef/ROM_Claws</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- eyestalk -->
<li>BodyPartGroupDef/CoA_EyestalkAttackTool</li> <!-- 2912622730/tigerblut.creaturesofazeroth/`Creatures of Azeroth` -->
<li>BodyPartGroupDef/AA_EyestalkAttackTool</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- fangs -->
<li>BodyPartGroupDef/GR_FangsAttackTool</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyPartGroupDef/HoundFangsAttackTool</li> <!-- 2033008242/mlie.rimstarve/`RimStarve (Continued)` -->
<li>BodyPartGroupDef/FangsAttackTool</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- frontleftclaws -->
<li>BodyPartGroupDef/BMT_FrontLeftClaws</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartGroupDef/BMT_FrontLeftClaws</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- frontleftscythe -->
<li>BodyPartGroupDef/FrontLeftScythe</li> <!-- 2038001322/biomesteam.biomesislands/`Biomes! Islands` -->
<li>BodyPartGroupDef/FrontLeftCactusScythe</li> <!-- 2070686241/mlie.legacyark/`Legacy Ark` -->
<li>BodyPartGroupDef/BMT_FrontLeftScythe</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- frontleftthumbspike -->
<li>BodyPartGroupDef/BMT_FrontLeftThumbSpike</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartGroupDef/BMT_FrontLeftThumbSpike</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- frontrightclaws -->
<li>BodyPartGroupDef/BMT_FrontRightClaws</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartGroupDef/BMT_FrontRightClaws</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- frontrightscythe -->
<li>BodyPartGroupDef/FrontRightScythe</li> <!-- 2038001322/biomesteam.biomesislands/`Biomes! Islands` -->
<li>BodyPartGroupDef/FrontRightCactusScythe</li> <!-- 2070686241/mlie.legacyark/`Legacy Ark` -->
<li>BodyPartGroupDef/BMT_FrontRightScythe</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- frontrightthumbspike -->
<li>BodyPartGroupDef/BMT_FrontRightThumbSpike</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartGroupDef/BMT_FrontRightThumbSpike</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- horn -->
<li>BodyPartGroupDef/SWHornAttackTool</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<li>BodyPartGroupDef/OniHorn</li> <!-- 1807327083/morishep.tarojun.onioftherimlite/`Oni of the Rim: Lite` -->
<!-- horns -->
<li>BodyPartGroupDef/Horns</li> <!-- 2798478679/asgalligator.mhrw/`Monster Hunter RimWorld` -->
<li>BodyPartGroupDef/BeefaloHornsAttackTool</li> <!-- 2033008242/mlie.rimstarve/`RimStarve (Continued)` -->
<!-- leftclaw -->
<li>BodyPartGroupDef/LeftLegClawAttackTool</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<li>BodyPartGroupDef/ROM_LeftClaws</li> <!-- 2871386777/ryflamer.other.cosmichorrors/`Cosmic Horrors XML Edition` -->
<!-- leftfingerclaw -->
<li>BodyPartGroupDef/LeftFingerClaw</li> <!-- 1710127259/ryflamer.rimcraft.animals/`[Ry]Rimcraft Animals` -->
<li>BodyPartGroupDef/LeftFingerClaw</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- leftleg -->
<li>BodyPartGroupDef/LeftLeg</li> <!-- 1136958577/spincrus.dinosauria/`Dinosauria` -->
<li>BodyPartGroupDef/LeftLeg</li> <!-- 1710127259/ryflamer.rimcraft.animals/`[Ry]Rimcraft Animals` -->
<li>BodyPartGroupDef/LeftLeg</li> <!-- 2963595062/deon.borderlands14/`Borderlands: The Rim` -->
<li>BodyPartGroupDef/LeftLeg</li> <!-- 2903582351/mlie.starwarsanimalcollection/`Star Wars Animal Collection (Continued)` -->
<!-- leftpincer -->
<li>BodyPartGroupDef/PW_LeftPincer</li> <!-- 2652029657/gargamiel.pokeworld/`PokéWorld` -->
<li>BodyPartGroupDef/LeftPincer</li> <!-- 1055485938/spino.megafauna/`Megafauna` -->
<!-- leftshoulderspike -->
<li>BodyPartGroupDef/BMT_LeftShoulderSpike</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartGroupDef/BMT_LeftShoulderSpike</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- leg -->
<li>BodyPartGroupDef/RB_LegAttackTool</li> <!-- 2801160906/vanillaexpanded.vgeneticse/`Vanilla Genetics Expanded` -->
<li>BodyPartGroupDef/LegAttackTool</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- mechanoidclaws -->
<li>BodyPartGroupDef/AM_MechaClaws</li> <!-- 2973169158/sarg.alphamechs/`Alpha Mechs` -->
<li>BodyPartGroupDef/AA_MechaClaws</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<!-- mouth -->
<li>BodyPartGroupDef/AA_Mouth</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartGroupDef/VAEWaste_Mouth</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyPartGroupDef/AG_Mouth</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<!-- neck -->
<li>BodyPartGroupDef/BMT_NeckAttackTool</li> <!-- 2860715703/biomesteam.biomesprehistoric/`Biomes! Prehistoric` -->
<li>BodyPartGroupDef/BMT_NeckAttackTool</li> <!-- 2038000893/biomesteam.biomescore/`Biomes! Core` -->
<!-- pincer -->
<li>BodyPartGroupDef/AA_PincerAttackTool</li> <!-- 1541721856/sarg.alphaanimals/`Alpha Animals` -->
<li>BodyPartGroupDef/VFEI_PincerAttackTool</li> <!-- 2149755445/oskarpotocki.vfe.insectoid/`Vanilla Factions Expanded - Insectoids` -->
<li>BodyPartGroupDef/VAEWaste_PincerAttackTool</li> <!-- 2962126499/vanillaexpanded.vaewaste/`Vanilla Animals Expanded — Waste Animals` -->
<li>BodyPartGroupDef/AG_PincerAttackTool</li> <!-- 2891845502/sarg.alphagenes/`Alpha Genes` -->
<!-- pseudopods -->