{
    general: {
        enabled: true,

        // Verbose logging.
        // Currently logs before and after values for each item changed.
        debug: false,
    },

    item: {
        // The relative percentage the weight of all items will be adjusted by.
        // Example:  50 = 50% increase (20KG changed to 30KG)
        // Example: -50 = 50% decrease (20KG changed to 10KG)
        adjustment: -50,

        // TIP: For the following, use https://db.sp-tarkov.com to find item names, item IDs, and parent IDs.

        // Adjust the weight of all items within a parent category by a relative percentage.
        // These changes will override the `adjustment` value above.
        parentAdjustments: {
            "5485a8684bdc2da71d8b4567": 0, // Ammunition
            "5c99f98d86f7745c314214b3": 0, // Mechanical Keys
            "5c164d2286f774194c5e69fa": 0, // Keycards
            "5448e53e4bdc2d60728b4567": 0, // Backpacks
        },

        // Adjust the weight of specific items.
        // You can use either the item name, or the item ID.
        // These adjustments will override `adjustment` and `parent_adjustments` values above for the specified items.
        specificAdjustments: {
            item_barter_energy_batterymilitary: 43.2, // Tank battery will weigh exactly 43.2 KG
        },

        // This is a list of items that will be ignored by the plugin; they will not have their default weight adjusted.
        // You can use either the item name, or the item ID.
        blacklist: [
            "5d03794386f77420415576f5", // Tank battery will be ignored
        ],
    },
}
