diff --git a/docs/modules/gear/items.mdx b/docs/modules/gear/items.mdx index 8a9a05f2..d88fb0ee 100644 --- a/docs/modules/gear/items.mdx +++ b/docs/modules/gear/items.mdx @@ -374,8 +374,9 @@ _Examples_ Attribute modifiers can be applied to items in the same way they are applied to kits. See [Attribute Kits](/docs/modules/gear/kits#attribute-modifier-kits-removable) for details. -Additionally, a `slot` can be specified, in which case the modifier will only be applied -when the item is in that slot. This must be an [armor or hand slot](/docs/reference/items/inventory). +Additionally, a `slot` can be specified, in which case the modifier will only be applied when the item is in that slot. +This must be an equipment slot or [equipment slot group](/docs/reference/items/inventory#inventory-slots). +This is not available in Minecraft 1.8. _Examples_ @@ -387,7 +388,8 @@ _Examples_ ```xml - generic.movementSpeed + + generic.movementSpeed ``` diff --git a/docs/modules/mechanics/filters.mdx b/docs/modules/mechanics/filters.mdx index 456ecf21..600b1e17 100644 --- a/docs/modules/mechanics/filters.mdx +++ b/docs/modules/mechanics/filters.mdx @@ -191,6 +191,8 @@ Player filters match for attributes of a certain player. | `` | Match if the player is participating and alive. | Dynamic | | `` | Match if the player is participating and dead. | Dynamic | | `` | Match if the player can fly. || +| `` | Match if the player is gliding with an elytra. || +| `` | Match if the player is riptiding with a trident. || | `` | Match if the player has a certain status effect. || | `` | Match if the player is carrying an item. | Dynamic | | `` | Match if the player is holding an item. | Dynamic | diff --git a/docs/reference/items/inventory.mdx b/docs/reference/items/inventory.mdx index 008e7d0d..e4c6e93d 100644 --- a/docs/reference/items/inventory.mdx +++ b/docs/reference/items/inventory.mdx @@ -8,13 +8,26 @@ import Materials from "../../../src/components/materials";
-

Inventory Slots

+ ### Inventory Slots
-

Inventory slots starting from 0 and ending at 35

+ Inventory slots starting from 0 and ending at 35
-

The attribute of items accepts the slot number which has been visualized to the left.

+

The attribute of items accepts the slot number which has been visualized in the figure. The values provided in the table below are also accepted.

+ + | Slot Value | Description | + |---|---| + | `any` | Any equipment slot, the default if not set. | + | `mainhand` || + | `offhand` || + | `hand` | Either main or off-hand. | + | `feet` || + | `legs` || + | `chest` || + | `head` || + | `armor` | Any armor piece. | + | `body` | Used for entities with no feet/legs/chest/head distinction, e.g. horses with armor. |
diff --git a/docs/reference/misc/banners.mdx b/docs/reference/misc/banners.mdx index 70b85b86..ffc56fad 100644 --- a/docs/reference/misc/banners.mdx +++ b/docs/reference/misc/banners.mdx @@ -6,7 +6,7 @@ Banners are crafted by defining multiple pattern types in cascading order. They can be given to the player in a kit using the [Banner Element](/docs/modules/gear/items#banners). | Name | Bukkit Name | Result | -|---|---|---| +|---|---|:---:| | Field | BASE | | | Bordure | BORDER | | | Field Masoned | BRICKS | | diff --git a/package-lock.json b/package-lock.json index 5af1778f..010f85f2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,7 +24,8 @@ "react-dom": "^19.2.5" }, "devDependencies": { - "@docusaurus/module-type-aliases": "^3.9.2" + "@docusaurus/module-type-aliases": "^3.9.2", + "baseline-browser-mapping": "^2.9.19" }, "engines": { "node": ">=22.0" diff --git a/package.json b/package.json index 2a5b621a..bc7205c9 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,8 @@ "react-dom": "^19.2.5" }, "devDependencies": { - "@docusaurus/module-type-aliases": "^3.9.2" + "@docusaurus/module-type-aliases": "^3.9.2", + "baseline-browser-mapping": "^2.9.19" }, "browserslist": { "production": [ diff --git a/static/img/modules/score-display-circle.png b/static/img/modules/score-display-circle.png index ce2bd267..22da081d 100644 Binary files a/static/img/modules/score-display-circle.png and b/static/img/modules/score-display-circle.png differ diff --git a/static/img/modules/score-display-numerical.png b/static/img/modules/score-display-numerical.png index b8b27fc3..1a070d1c 100644 Binary files a/static/img/modules/score-display-numerical.png and b/static/img/modules/score-display-numerical.png differ diff --git a/static/img/modules/score-display-pipe.png b/static/img/modules/score-display-pipe.png index 1e790356..2d5133c2 100644 Binary files a/static/img/modules/score-display-pipe.png and b/static/img/modules/score-display-pipe.png differ diff --git a/static/img/modules/score-display-square.png b/static/img/modules/score-display-square.png index 8de1a521..715b7e69 100644 Binary files a/static/img/modules/score-display-square.png and b/static/img/modules/score-display-square.png differ diff --git a/static/img/reference/inventory-slots.png b/static/img/reference/inventory-slots.png index 0dc23fd4..dfea6ee1 100644 Binary files a/static/img/reference/inventory-slots.png and b/static/img/reference/inventory-slots.png differ