Skip to content

Commit

Permalink
Merge pull request #72 from Exanthiax/honey-triggers
Browse files Browse the repository at this point in the history
add honey triggers
  • Loading branch information
WillFP authored Sep 22, 2024
2 parents a932739 + e7d1ec5 commit 6cff776
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/effects/all-conditions/placeholder_contains.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Requires a placeholder to contain a certain value
```yaml
- id: placeholder_contains
args:
placeholder: '%ecocrates_ancient_opens%' # The permission, including %
placeholder: '%ecocrates_ancient_opens%' # The placeholder, including %
value: "test" # The value the placeholder should contain
ignore_case: true # If the case should be ignored (optional)
```
2 changes: 1 addition & 1 deletion docs/effects/all-conditions/placeholder_equals.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Requires a placeholder to equal a certain value
```yaml
- id: placeholder_equals
args:
placeholder: '%ecocrates_ancient_opens%' # The permission, including %
placeholder: '%ecocrates_ancient_opens%' # The placeholder, including %
value: 5 # The value it must equal
```
2 changes: 1 addition & 1 deletion docs/effects/all-conditions/placeholder_greater_than.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Requires a placeholder to be greater than or equal to a certain value
```yaml
- id: placeholder_greater_than
args:
placeholder: '%ecocrates_ancient_opens%' # The permission, including %
placeholder: '%ecocrates_ancient_opens%' # The placeholder, including %
value: 5 # The value it must be >= to
```
2 changes: 1 addition & 1 deletion docs/effects/all-conditions/placeholder_less_than.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Requires a placeholder to be less than a certain value
```yaml
- id: placeholder_less_than
args:
placeholder: '%ecocrates_ancient_opens%' # The permission, including %
placeholder: '%ecocrates_ancient_opens%' # The placeholder, including %
value: 5 # The value it must be less than
```
9 changes: 9 additions & 0 deletions docs/effects/all-filters/honey_level_full.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# `honey_level_full`

If the beehive or bee nest should be full of honey (honey_level 5)

# Example Config
```yaml
filters:
honey_level_full: true
```
12 changes: 12 additions & 0 deletions docs/effects/all-filters/sheep_color.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# `sheep_color`

Requires the sheep to be a certain color

# Example Config
```yaml
filters:
sheep_color:
- white
- black
- magenta
```

0 comments on commit 6cff776

Please sign in to comment.