bm_sell

t1ger_chopshop/shared/bm_sell.lua

Types and settings for the blackmarket sell option

---@class BlackmarketSellOption
---@field name string
---@field icon string
---@field price number

---@type BlackmarketSellOption[]
return {
    {
        name = Config.Items["door"].item, -- item name
        icon = Config.Items["door"].icon, -- item icon
        price = 200 -- item sell price
    },
    {
        name = Config.Items["hood"].item,
        icon = Config.Items["hood"].icon,
        price = 200
    },
    {
        name = Config.Items["trunk"].item,
        icon = Config.Items["trunk"].icon,
        price = 200
    },
    {
        name = Config.Items["wheel"].item,
        icon = Config.Items["wheel"].icon,
        price = 200
    },
}

Last updated