-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# `aoe_blocks` | ||
|
||
#### Triggered Effect | ||
|
||
Runs effects for all blocks within an area of effect | ||
|
||
The list of shapes is found [here](https://plugins.auxilor.io/effects/all-effects/aoe#list-of-shapes) | ||
|
||
# Example Config | ||
|
||
```yaml | ||
- id: aoe | ||
args: | ||
effects: # The effects to run for each block | ||
- id: break_block | ||
shape: beam # The shape of the AOE area (see above) | ||
radius: 3 # The radius of the cone (see above) | ||
distance: 15 # The length of the beam (see above) | ||
pierce_blocks: true # If the beam should pass through blocks (see above) | ||
pierce_entities: true # If the beam should pass through entities (see above) | ||
...other config (eg triggers, filters, mutators, etc) | ||
``` |