# Additional Resources # Item Syntax BattleArena has an item format that is used for creating items in config. A few examples of where this format is used is in the [Classes](https://docs.bplug.in/books/modules-and-other-tools/page/classes) module, as well as for the [Give Item](https://docs.bplug.in/books/user-guide/page/action-reference) Action, among other places. ### Item Options
**Name** | **Description** | **Type** |
color | The color of the item, mainly for leather armor, banners, etc. | Color: \- #<hex> or <rrr,ggg,bbb> |
custom-model-data | The custom model data to use. | <number> |
damage | How much damage (or durability) should be applied to the item. | <number> |
display-name | The display name of the item (supports [MiniMessage](https://docs.advntr.dev/minimessage/index.html)). | <string> |
enchants | Enchants to put on the item. | Enchantment list: \- \[<enchant name>:<amount>...\] |
item-flags | The item flags to apply. See [ItemFlag](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/inventory/ItemFlag.html). | Item Flag list: -\[<item flag name>...\] |
lore | The lore of the item (supports [MiniMessage](https://docs.advntr.dev/minimessage/index.html)). | Lore list: \[<line>...\] |
amount | How amount of the item. | <number> |
unbreakable | Whether the item is unbreakable. | <true|false> |
effects | The potion effects to apply to the item. | Potion effect list: \- \[<[potion effect](https://docs.bplug.in/books/user-guide/page/potion-effect-format)>...\] |
**Name** | **Description** | **Type** |
duration | The amount of time (in ticks) to apply the effect for. | <number> |
amplifier | How strong the effect is. | <number> |
ambient | Whether the effect is ambient (less intrusive) | \[true|false\] (default: false) |
particles | Whether the effect should show particles or not. | \[true|false\] (default: true) |
**Name** | **Description** | **Type** |
particle | The name of the particle. See [Particle](https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Particle.html). | <Particle> |
speed | The speed of the particle. | <number> |
count | The number of particles to display. | <number> |
offset | The offset of the particle. | Position: <x,y,z> |
data | The data for the particle. | Will vary for each particle (i.e. item\_crack will use [Item](https://docs.bplug.in/books/user-guide/page/item-syntax)) |
**Name** | **Description** | **Type** |
firework-type | The type of firework to display. See [FireworkEffect.Type](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/FireworkEffect.Type.html). | <FireworkEffect.Type> |
flicker | Whether the firework should flicker. | <true|false> |
trail | Whether the firework should have a trail. | <true|false> |
colors | The colors of the firework. | Color list: - \[#<hex>...\] |
fade-colors | The colors the firework should fade to. | Color list: - \[#<hex>...\] |
**Name** | **Description** | **Type** |
duration | How long to freeze the player for. See [Time Format](https://docs.bplug.in/books/user-guide/page/time-format). | <Duration> |
radius | In what radius players should be frozen for, if applicable. | <number> |