Version 1.0.3: recompiled for Rimworld v1.6.
This mod allows you to scale and increase a pawn's carrying capacity, in that order. Supports Combat Extended's weight and mass capacities.
Inspired by Bulk Carrier, which I used until recently.
Description
This mod allows you to change your pawn's carrying capacity with the following settings:
- Mass Multiplier: Multiplies how much mass a pawn can carry. This is Carrying Capacity in vanilla and Weight in Combat Extended.
- Mass Offset: Increases how much mass a pawn can carry in addition to the modified original value. This is Carrying Capacity in vanilla and Weight in Combat Extended.
- Bulk Multiplier: Multiplies how much bulk a pawn can carry, only in Combat Extended.
- Bulk Offset: Increases how much bulk a pawn can carry in addition to the modofied original value, only in Combat Extended.
Additionally in Vanilla, caravans will use a pawn's carrying capacity as its overworld mass capacity.
Compatibility
- Supports Combat Extended out-of-the-box. Weight and Bulk will be modified (this mod was built with CE in mind).
- You can add support to other inventory capacities by writing a patch with the following patch operation:
<Operation Class="PatchOperationAdd">
<xpath>Defs/StatDef[defName="CarryingCapacity"]/parts</xpath>
<value>
<li Class="EnhancedCarryingCapacity.StatPart_MassModifier" />
</value>
</Operation>
Valid classes are EnhancedCarryingCapacity.StatPart_MassModifier and EnhancedCarryingCapacity.StatPart_BulkModifier. The full class identifier is required as the classes are not defined inside the RimWorld namespace.
Source[github.com]