For the complete documentation index, see llms.txt. This page is also available as Markdown.

Pricing

Control clothing prices through configs/config_price.lua.


Global price multiplier

Multiplies all prices across every shop.

Config.GlobalPriceMultiplier = 1.0

Per-shop multiplier

Make certain shop types more or less expensive. The default value applies to shops not listed here and to shared items (undershirts, neckwear, earrings, etc.).

Config.ShopMultiplier = {
    binco = 1.0,
    suburban = 5.0,
    ponsonbys = 15.0,
    ammunation = 4.0,
    beach_masks = 4.0,
    vangelico = 30.0,
    -- some_custom_shop = 1.0,
    default = 1.0,
}

Make everything free

Set Config.EverythingEverywhereIsFree to true to remove all prices globally.

To make only specific shops free, use the IS_EVERYTHING_FREE modifier in Shop Configs.


Character feature prices

By default, character features (hair, makeup, face, etc.) are free. To charge for them, edit Config.CharFeaturesPrices.

For example, to charge 1000 for makeup:

These prices respect EverythingEverywhereIsFree and shop multipliers. If a shop is set to free, character feature prices are ignored.

Last updated