Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add GIFs to options #7

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,8 @@ World settings are on a per-world basis. The child-node `default` is used for al
* explode-when-killed
- **default**: false
- **description**: Makes the creeper explode when killed
??? "📷 GIF of option in action"
![Creeper explodes when killed](assets/creeper/explode-when-killed.gif){ loading=lazy }
* attributes
* max_health
- **default**: 10.0
Expand Down Expand Up @@ -813,12 +815,19 @@ World settings are on a per-world basis. The child-node `default` is used for al
* aggressive-towards-spawned-endermites
- **default**: false
- **description**: Set to true to make enderman aggro towards spawned endermites
??? "📷 GIF of option in action"
![Enderman aggros towards spawned endermites](assets/enderman/aggressive-towards-spawned-endermites.gif){ loading=lazy }
* ignore-players-wearing-dragon-head
- **default**: false
- **description**: Set to true to make enderman ignore players that wear the dragon head
??? "📷 GIF of option in action"
![Enderman ignores the player that wears the dragon head](assets/enderman/ignore-players-wearing-dragon-head.gif){ loading=lazy }

* disable-player-stare-aggression
- **default**: false
- **description**: Set to true to stop an enderman from going aggro by a player looking into the enderman's eyes
??? "📷 GIF of option in action"
![Enderman doesn't aggro towards player](assets/enderman/disable-player-stare-aggression.gif){ loading=lazy }
* attributes
* max_health
- **default**: 40.0
Expand Down Expand Up @@ -1052,6 +1061,8 @@ World settings are on a per-world basis. The child-node `default` is used for al
* default-collar-color
- **default**: RED
- **description**: Set the default collar color when a wolf is tamed. [Available Colors](https://purpur.pl3x.net/javadoc/org/bukkit/Color.html)
??? "📷 GIF of option in action"
![Wolf's default collar is blue when tamed](assets/wolf/default-collar-color.gif){ loading=lazy }
* breeding-delay-ticks
- **default**: 6000
- **description**: The amount of ticks to wait before being able to breed again
Expand Down
Binary file added docs/assets/creeper/explode-when-killed.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
Binary file added docs/assets/wolf/default-collar-color.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ extra_css:
theme:
name: material
custom_dir: overrides
favicon: images/purpur-small.png
logo: images/purpur-small.png
favicon: assets/purpur-small.png
logo: assets/purpur-small.png
palette:
- scheme: slate
primary: light blue
Expand Down
2 changes: 1 addition & 1 deletion overrides/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
<meta property="og:title" content="{{ title }}">
<meta property="og:description" content="{{ config.site_description }}">
<meta property="og:url" content="{{ page.canonical_url }}">
<meta property="og:image" content="https://pl3xgaming.github.io/PurpurDocs/images/purpur-small.png">
<meta property="og:image" content="https://pl3xgaming.github.io/PurpurDocs/assets/purpur-small.png">
{% endblock %}