> ## Documentation Index
> Fetch the complete documentation index at: https://docs.borntocraftstudio.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Bow Actions

> Arrow-based enchantment effects.

# Bow Actions

Actions triggered when shooting a bow or crossbow via `EnchantmentEvent.BOW_SHOOT`. All actions have the standard ActionEntry fields (`id`, `name`, `criteria`, `modifiers`, `triggers`).

| Action Entry             | Description                                                | Icon                          | Extra Fields |
| :----------------------- | :--------------------------------------------------------- | :---------------------------- | :----------- |
| `homing_arrow_action`    | Shoots an arrow that magnetically tracks the nearest enemy | `mdi:target`                  | None         |
| `explosive_arrow_action` | Projectile explodes on impact without breaking blocks      | `mdi:explosion`               | None         |
| `volley_arrow_action`    | Shoots additional arrows in a cone shape                   | `mdi:arrow-split-horizontal`  | None         |
| `sniper_arrow_action`    | Increases damage based on distance traveled                | `mdi:scope`                   | None         |
| `venom_arrow_action`     | Poisons the target struck by the arrow                     | `mdi:bottle-skull`            | None         |
| `wither_arrow_action`    | Applies wither effect to the target                        | `mdi:skull`                   | None         |
| `piercing_shot_action`   | Arrow acts as true damage, ignoring armor                  | `mdi:arrow-through-box`       | None         |
| `pull_arrow_action`      | Pulls the struck target towards the shooter                | `mdi:arrow-collapse-vertical` | None         |
| `push_arrow_action`      | Inflicts massive knockback to the struck target            | `mdi:arrow-expand-vertical`   | None         |
| `lightning_arrow_action` | Strikes lightning where the arrow hits                     | `mdi:weather-lightning`       | None         |
| `teleport_arrow_action`  | Teleports the shooter to the arrow's impact location       | `mdi:teleport`                | None         |
| `healing_arrow_action`   | Heals the target instead of damaging                       | `mdi:heart-plus`              | None         |
| `web_arrow_action`       | Encases the target in a temporary cobweb                   | `mdi:spider-web`              | None         |
| `ender_arrow_action`     | Deals massive bonus true damage to End mobs                | `mdi:dragon`                  | None         |

## Example

```json theme={null}
{
  "id": "explosive_bow",
  "name": "Explosive Shot",
  "criteria": [],
  "modifiers": [],
  "triggers": []
}
```
