> For the complete documentation index, see [llms.txt](https://ajneb97.gitbook.io/minechess/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ajneb97.gitbook.io/minechess/resources/resource-pack-1.21.3.md).

# Resource Pack 1.21.3-

{% hint style="info" %}
This is the configuration of the plugin using a custom resource pack that add models to the pieces of chess arenas. You can download the resource pack from [**HERE**](https://drive.google.com/file/d/1-d6DtZA79x5gvlswvX2Y5NN7UV9qESmz/view?usp=drive_link).
{% endhint %}

{% hint style="warning" %}
Only works on 1.16.5-1.21.3
{% endhint %}

{% hint style="warning" %}
**MineChess+** exclusive feature.
{% endhint %}

Find the `pieces` section of your config and replace it with the following section. Remember that you must set the [**Pieces Type**](/minechess/arena-editing.md#pieces-type) of your arenas to MODEL.

```yaml
pieces:
  pawn:
    points: 1
    black:
      model:
        material: BLAZE_POWDER
        custom_model_data: 1
        offset_y: 0.25
    white:
      model:
        material: BLAZE_POWDER
        custom_model_data: 2
        offset_y: 0.25
  rook:
    points: 3
    black:
      model:
        material: BLAZE_POWDER
        custom_model_data: 3
        offset_y: 0.25
    white:
      model:
        material: BLAZE_POWDER
        custom_model_data: 4
        offset_y: 0.25
  bishop:
    points: 3
    black:
      model:
        material: BLAZE_POWDER
        custom_model_data: 5
        offset_y: 0.5
    white:
      model:
        material: BLAZE_POWDER
        custom_model_data: 6
        offset_y: 0.5
  knight:
    points: 3
    black:
      model:
        material: BLAZE_POWDER
        custom_model_data: 7
        offset_y: 0.5
        rotation: 90
    white:
      model:
        material: BLAZE_POWDER
        custom_model_data: 8
        offset_y: 0.5
        rotation: -90
  queen:
    points: 10
    black:
      model:
        material: BLAZE_POWDER
        custom_model_data: 9
        offset_y: 0.5
    white:
      model:
        material: BLAZE_POWDER
        custom_model_data: 10
        offset_y: 0.5
  king:
    black:
      model:
        material: BLAZE_POWDER
        custom_model_data: 11
        offset_y: 0.5
    white:
      model:
        material: BLAZE_POWDER
        custom_model_data: 12
        offset_y: 0.5
```
