# 📷Skin

## Heads

You can use custom textured heads to customize your backpack item.

To use the head texture you have to set `type: HEAD` and `texture` to the **special head texture value**.

```yaml
example_1:
  enabled: true
  display_name: '&fExample'
  item:
    type: HEAD
    texture: 'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmEzYjM0ODYyYjlhZmI2M2NmOGQ1Nzc5OTY2ZDNmYmE3MGFmODJiMDRlODNmM2VhZjY0NDlhZWJhIn19fQ=='
  size: 2
```

You can download find had texture values on this website: <https://minecraft-heads.com/>

![](/files/-MiVrN-edQwmNa4tuXY-)

## Vanilla item

You can use a vanilla item as appearance item for your backpack.\
To use a vanilla item as appearance backpack you just have to set `type: ITEM` and `material` to the **vanilla material**.

```yaml
example_2:
  enabled: true
  display_name: '&fExample custom texture'
  can_auto_pickup: false
  item:
    type: ITEM
    material: DIAMOND
  size: 2
```

## Vanilla item with CustomModelData

You can use a vanilla item with CustomModelData as appearance item for your backpack.\
To use a vanilla item as appearance backpack you just have to set `type: ITEM`, `material` to the **vanilla material** and `custom_model_data` to the **CustomModelData value**.

```yaml
example_2:
  enabled: true
  display_name: '&fExample custom texture'
  can_auto_pickup: false
  item:
    type: ITEM
    material: DIAMOND
    custom_model_data: 1
  size: 2
```

## ItemsAdder

You can use [ItemsAdder ](https://www.spigotmc.org/resources/%E2%9C%85must-have%E2%9C%85-itemsadder%E2%9C%A8textures-3d-models-huds-gui-emojis-ores-blocks-wings-tails-hats.73355/)custom textures for your backpacks.\
To use the custom texture you have to set `type: ITEMSADDER_ITEM` and `name` to the **ItemsAdder item** name.

[Read more here](/info/compatible-plugins/itemsadder.md)

```yaml
 cool_backpack:
    display_name: '&fCool Backpack'
    item:
      type: ITEMSADDER_ITEM
      name: plastic_bag
    size: 3
```

## NewItems

You can use [NewItems ](https://www.spigotmc.org/resources/80-newitems-1-9-1-13-2-create-items-blocks-with-custom-texture-3d-model-without-mods.22783/)custom textures for your backpacks.\
To use the custom texture you have to set `type: NEWITEMS_ITEM` and `name` to the **NewItems item** name.

[Read more here](/info/compatible-plugins/newitems.md)

```yaml
 cool_backpack:
    display_name: '&fCool Backpack'
    item:
      type: NEWITEMS_ITEM
      name: item66
    size: 3
```


---

# 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://epicbackpacks.devs.beer/configurations/skin.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.
