-
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 pull request #39 from Cokenpizza/master
Update Docs for Auxilor/libreforge#119
- Loading branch information
Showing
5 changed files
with
40 additions
and
1 deletion.
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,13 @@ | ||
# `give_saturation` | ||
#### Triggered Effect | ||
|
||
Gives the player saturation | ||
|
||
# Example Config | ||
```yaml | ||
- id: give_saturation | ||
args: | ||
amount: 1.0 # The amount of saturation to give/take (allows negative values) | ||
respect-vanilla-limits: true # (Optional, defaults to false) if the added saturation should respect vanilla minimum saturation (0.0) and maximum saturation (20.0 or player's current food level, whichever is lower) | ||
...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
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 @@ | ||
# `set_food` | ||
#### Triggered Effect | ||
|
||
Sets the player's food | ||
|
||
# Example Config | ||
```yaml | ||
- id: set_food | ||
args: | ||
amount: 1 # The food level to set | ||
...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 @@ | ||
# `set_saturation` | ||
#### Triggered Effect | ||
|
||
Sets the player's saturation | ||
|
||
# Example Config | ||
```yaml | ||
- id: set_saturation | ||
args: | ||
amount: 10.0 # The saturation level to set | ||
...other config (eg triggers, filters, mutators, etc) | ||
``` |