Skip to content

Commit

Permalink
4.46.0
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Nov 26, 2023
1 parent 8260398 commit 7f3edf4
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/effects/all-conditions/has_boss_bar_visible.md
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
```
12 changes: 12 additions & 0 deletions docs/effects/all-conditions/has_completed_advancement.md
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
```
10 changes: 10 additions & 0 deletions docs/effects/all-conditions/has_scoreboard_visible.md
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
```
12 changes: 12 additions & 0 deletions docs/effects/all-effects/open_crafting.md
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)
```
12 changes: 12 additions & 0 deletions docs/effects/all-filters/advancements.md
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"
```
2 changes: 2 additions & 0 deletions docs/effects/all-triggers.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,5 @@ Triggered effects also produce a value, which is used in EcoPets for levelling.
| `entity_death` | Triggered when an entity takesdies | 1 |
| `entity_spawn` | Triggered when an entity spawns | 1 |
| `entity_teleport` | Triggered when an entity teleports | 1 |
| `complete_advancement` | Triggered when completing an advancement | 1 |
| `smith_item` | Triggered when smithing an item in a smithing table | 1 |

0 comments on commit 7f3edf4

Please sign in to comment.