aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrakenied <krakenied1@gmail.com>2026-01-15 06:28:07 +0100
committerKrakenied <46192742+Krakenied@users.noreply.github.com>2026-01-15 06:29:52 +0100
commit3f3e927907e834c6e1b9370be48b568d5b5ff770 (patch)
tree1c75caec33ae03eb513aa0c45a9549b5fbe458d4
parentfab23bd19311409d7094e825c11dbc939151c760 (diff)
Update defining items wiki page
-rw-r--r--docs/configuration/defining-items.md106
1 files changed, 94 insertions, 12 deletions
diff --git a/docs/configuration/defining-items.md b/docs/configuration/defining-items.md
index e9085532..e17b6cef 100644
--- a/docs/configuration/defining-items.md
+++ b/docs/configuration/defining-items.md
@@ -35,17 +35,24 @@ item:
## Options
-| Field | Optional | Minecraft Version | More Information |
-|----------------------|-----------------|-------------------|------------------------------|
-| `item` | ❌ | \- | [Jump](#item) |
-| `name` | ✅ <sup>\*</sup> | \- | [Jump](#name) |
-| `lore` | ✅ | \- | [Jump](#lore) |
-| `enchantments` | ✅ | \- | [Jump](#enchantments) |
-| `itemflags` | ✅ | 1.8+ | [Jump](#item-flags) |
-| `unbreakable` | ✅ | 1.13+ | [Jump](#unbreakable) |
-| `attributemodifiers` | ✅ | 1.13+ | [Jump](#attribute-modifiers) |
-| `custommodeldata` | ✅ | 1.14+ | [Jump](#custom-model-data) |
-| `owner-[...]` | ✅ | 1.8+ | [Jump](#owner) |
+| Field | Optional | Minecraft Version | More Information |
+|----------------------------|-----------------|-------------------|-------------------------------------|
+| `item` | ❌ | \- | [Jump](#item) |
+| `name` | ✅ <sup>\*</sup> | \- | [Jump](#name) |
+| `lore` | ✅ | \- | [Jump](#lore) |
+| `enchantments` | ✅ | \- | [Jump](#enchantments) |
+| `itemflags` | ✅ | 1.8+ | [Jump](#item-flags) |
+| `unbreakable` | ✅ | 1.8+ | [Jump](#unbreakable) |
+| `attributemodifiers` | ✅ | 1.13+ | [Jump](#attribute-modifiers) |
+| `custommodeldata` | ✅ | 1.14+ | [Jump](#custom-model-data) |
+| `custommodeldata-colors` | ✅ | 1.21.4+ | [Jump](#custom-model-data-colors) |
+| `custommodeldata-flags` | ✅ | 1.21.4+ | [Jump](#custom-model-data-flags) |
+| `custommodeldata-floats` | ✅ | 1.21.4+ | [Jump](#custom-model-data-floats) |
+| `custommodeldata-strings` | ✅ | 1.21.4+ | [Jump](#custom-model-data-strings) |
+| `itemmodel` | ✅ | 1.21.4+ | [Jump](#item-model) |
+| `enchantmentglintoverride` | ✅ | 1.20+ | [Jump](#enchantment-glint-override) |
+| `hidetooltip` | ✅ | 1.20+ | [Jump](#hide-tooltip) |
+| `owner-[...]` | ✅ | 1.8+ | [Jump](#owner) |
<sup>\*: The name must be defined for the display item of Quests.</sup>
@@ -132,7 +139,7 @@ item:
### Unbreakable
-- *1.13+*'
+- *1.8+*'
``` yaml
item:
@@ -179,6 +186,81 @@ item:
# ...
```
+### Custom model data colors
+
+**1.21.4+**
+
+```yaml
+item:
+ custommodeldata-colors: # use ARGB
+ - 4294901760 # red FFFF0000
+ - 4278255360 # green FF00FF00
+ - 4278190335 # blue FF0000FF
+```
+
+### Custom model data flags
+
+**1.21.4+**
+
+```yaml
+item:
+ custommodeldata-flags:
+ - true
+ - true
+ - false
+```
+
+### Custom model data floats
+
+**1.21.4+**
+
+```yaml
+item:
+ custommodeldata-floats:
+ - 3.14
+ - 2.7182
+ - 1.618033
+```
+
+### Custom model data strings
+
+**1.21.4+**
+
+```yaml
+item:
+ custommodeldata-strings: # hopefully there are no constraints for these lol
+ - "the_best_quests_plugin"
+ - "WHEEEEEEEN UPDATEEEEEEEEEEEEEE"
+ - "https://github.com/LMBishop/Quests/pull/842"
+```
+
+### Item model
+
+**1.21.4+**
+
+```yaml
+item:
+ itemmodel: "namespaced_key_of:the_model"
+```
+
+### Enchantment glint override
+
+**1.20+**
+
+```yaml
+item:
+ enchantmentglintoverride: true
+```
+
+### Hide tooltip
+
+**1.20+**
+
+```yaml
+item:
+ hidetooltip: true
+```
+
### Owner
This only applies if you have a skull item stack (`PLAYER_HEAD` 1.13+,