# Kevlar skins

## Normal kevlar skin

{% hint style="danger" %}
It is important that every kevlar type that is entered in Config.Kevlar also has an entry in Config.KevlarSkin. If UseSkin = true for the kevlar.
{% endhint %}

To create the skin for a kevlar type, an object must be created in the table Config.KevlarSkin which has the name of the kevlar as its index. See example

```lua
["the_kevlar_name_stand_here"] = {
        male = {
            ["bproof_1"] = 10,
            ["bproof_2"] = 1,
        },
        female = {
            ["bproof_1"] = 10,
            ["bproof_2"] = 1,
        }
    }
```

To adjust the clothing, only the numbers of `bproof_1` and `bproof_2` of the corresponding genders need to be set as required.

## Job kevlar skin

{% hint style="info" %}
As soon as a job is entered in the table, this Kevlar skin is preferred again, no matter what type of Kevlar vest is worn
{% endhint %}

If you want a certain job like the police to have a different kevlar vest skin, you have to create an object in the table Config.KevlarSkin which has the job name as index. See example

```lua
["police"] = {
        male = {
            ["bproof_1"] = 10,
            ["bproof_2"] = 1,
        },
        female = {
            ["bproof_1"] = 10,
            ["bproof_2"] = 1,
        }
    }
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://novel-devolution.gitbook.io/novel_devolution/novel-kevlar-v2-esx/kevlar-skins.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.
