# 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
    },
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.t1ger.net/resources/t1ger-chop-shop/configuration/bm_sell.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
