# 📷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/>

![](https://3539081540-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MY5JEAY-QwdTgx9rNuM%2F-MiSHHH_VKBzZlH--UsC%2F-MiVrN-edQwmNa4tuXY-%2Fimmagine.png?alt=media\&token=8e3b66e0-0bc2-4759-a722-82b653c966f6)

## 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](https://epicbackpacks.devs.beer/info/compatible-plugins/itemsadder)

```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](https://epicbackpacks.devs.beer/info/compatible-plugins/newitems)

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