-
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.
Merge branch 'master' into fancynpcs-integration
- Loading branch information
Showing
6 changed files
with
56 additions
and
2 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,13 @@ | ||
# `has_mcmmo_level` | ||
|
||
Requires a player to have a certain McMMO skill level | ||
|
||
**Requires McMMO** | ||
|
||
# Example Config | ||
```yaml | ||
- id: has_mcmmo_level | ||
args: | ||
skill: mining # The skill ID | ||
level: 30 # The minimum level | ||
``` |
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,14 @@ | ||
# `mcmmo_ability_on_cooldown` | ||
|
||
Requires an McMMO ability to be on cooldown | ||
|
||
**Requires McMMO** | ||
|
||
# Example Config | ||
```yaml | ||
- id: mcmmo_ability_on_cooldown | ||
args: | ||
abilities: | ||
- serrated_strikes # The ID of the ability | ||
- super_breaker | ||
``` |
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 @@ | ||
# `scale` | ||
#### Permanent Effect | ||
|
||
Multiplies scale | ||
|
||
**Requires 1.21+** | ||
# Example Config | ||
```yaml | ||
- id: scale | ||
args: | ||
multiplier: 1.5 # The multiplier for scale | ||
``` |
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 @@ | ||
# `mcmmo_ability` | ||
|
||
The list of [entities](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/entity/EntityType.html) that the effect should activate against | ||
|
||
# Example Config | ||
```yaml | ||
filters: | ||
mcmmo_ability: | ||
- super_breaker | ||
``` |
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