-
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
6 changed files
with
58 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# `has_boss_bar_visible` | ||
|
||
Requires a player to have the TAB boss bar shown to them | ||
|
||
**Requires TAB** | ||
|
||
# Example Config | ||
```yaml | ||
- id: has_boss_bar_visible | ||
``` |
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,12 @@ | ||
# `has_completed_advancement` | ||
|
||
Requires a player to have completed an advancement | ||
|
||
A list of advancement keys can be found [here](https://minecraft.fandom.com/wiki/Advancement) | ||
|
||
# Example Config | ||
```yaml | ||
- id: has_completed_advancement | ||
args: | ||
advancement: "minecraft:story/mine_stone" # The advancement ID | ||
``` |
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,10 @@ | ||
# `has_scoreboard_visible` | ||
|
||
Requires a player to have the TAB scoreboard shown to them | ||
|
||
**Requires TAB** | ||
|
||
# Example Config | ||
```yaml | ||
- id: has_scoreboard_visible | ||
``` |
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,12 @@ | ||
# `open_crafting` | ||
|
||
#### Triggered Effect | ||
|
||
Opens a crafting table for the player | ||
|
||
# Example Config | ||
|
||
```yaml | ||
- id: open_crafting | ||
...other config (eg triggers, filters, mutators, etc) | ||
``` |
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,12 @@ | ||
# `advancements` | ||
|
||
The list of advancements that the effect should activate against | ||
|
||
A list of advancement keys can be found [here](https://minecraft.fandom.com/wiki/Advancement) | ||
|
||
# Example Config | ||
```yaml | ||
filters: | ||
advancements: | ||
- "minecraft:story/mine_stone" | ||
``` |
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