# bm\_sell

Types and settings for the blackmarket sell option

{% hint style="success" %}
You can add or remove items in here. Just define them inside `t1ger_chopshop/shared/items.lua` and follow the same setup as below.
{% endhint %}

```lua
---@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
    },
}
```
