Custom Race - Mhburg/AwsomeInventory GitHub Wiki
Awesome Inventory replace the ITab_Pawn_Gear
with its own gear tab class.
To make custom race compatible, one can inherit from the BasePawn def and overwrite values that one sees fit.
For example,
<?xml version="1.0" encoding="utf-8" ?>
<Defs>
<ThingDef ParentName="BasePawn" Name="CustomRaceBase" Abstract="True">
<statBases>
<!-- Overwrites Mass in BasePawn from 60 to 50 -->
<Mass>50</Mass>
</statBases>
</ThingDef>
</Defs>