# Traits

Each NFT will be randomly assigned a series of traits. Most traits are shared across the characters such as shirts, hats and glasses. But certain characters have traits unique to them such as Wolf's teeth and Andy's socks.

Traits themselves have rarity tiers that range from common to legendary. The trait probability distribution is unique to each rarity tier.

Certain traits may have conflicts with another. If two traits overlap or cannot coincide on one NFT then we decide which to keep, first based on the trait with the higher rarity, if a tie, RNG decider.

Although we use RNG, we had to make sure the boys club essence was engrained to the collection with our seed #s.

```python
    seeds = [69420, 68420, 67420]
    .
    .
    .
    random.seed(random_seed)
```


---

# 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://the-boys-club-nft.gitbook.io/the-boys-club-nft/the-collection/traits.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.
