@@ -32,7 +32,7 @@ No configuration needed.
3232
3333You can find code of all implementations [ here] ( src/main/kotlin/impl ) .
3434
35- #### [ Level Systems] [ BukkitLevelSystem.Provider ]
35+ ### [ Level Systems] [ BukkitLevelSystem.Provider ]
3636
3737- ** [ Minecraft] [ minecraft-exp ] ** _ (Default)_
3838- ** [ SkillAPI] **
@@ -41,27 +41,43 @@ You can find code of all implementations [here](src/main/kotlin/impl).
4141- ** [ Heroes] **
4242- ** [ QuantumRPG] **
4343
44- #### [ Class Systems] [ BukkitClassSystem.Provider ]
44+ ### [ Class Systems] [ BukkitClassSystem.Provider ]
4545
4646- ** Permissions-based** _ (Default)_ - give permission ` mimic.class.[class_name] ` to assign class to player
4747- ** [ SkillAPI] **
4848- ** [ MMOCore] **
4949- ** [ Heroes] **
5050- ** [ QuantumRPG] **
5151
52- #### [ Items Registries] [ BukkitItemsRegistry ]
52+ ### [ Items Registries] [ BukkitItemsRegistry ]
5353
54- [ MimicItemsRegistry] - Items registry combining all others items registries.
55- It uses service ID as namespace for items IDs.
56- For example: ` acacia_boat -> minecraft:acacia_boat ` .
57- If you use item ID without a namespace, it will search over all registries.
54+ #### [ MimicItemsRegistry]
5855
59- Registry | ID Structure
60- -------------------------------------|--------------------------
61- [ Minecraft] [ MinecraftItemsRegistry ] | ` minecraft:[id] `
62- [ CustomItems] | ` customitems:[id] `
63- [ MMOItems] | ` mmoitems:[id] `
64- [ QuantumRPG] | ` quantumrpg:[type]/[id] `
56+ Items registry combining all others items registries.
57+ It uses service ID as namespace for items IDs.\
58+ For example: ` acacia_boat -> minecraft:acacia_boat ` .
59+
60+ > If you use item ID without a namespace, it will search over all registries.
61+
62+ #### [ Minecraft] [ MinecraftItemsRegistry ]
63+
64+ ** ID Format:** ` minecraft:[id] ` \
65+ ** Payload:** [ ItemMetaPayload]
66+
67+ #### [ CustomItems]
68+
69+ ** ID Format:** ` customitems:[id] ` \
70+ ** Payload:** * Not supported*
71+
72+ #### [ MMOItems]
73+
74+ ** ID Format:** ` mmoitems:[id] ` \
75+ ** Payload:** * Not supported*
76+
77+ #### [ QuantumRPG]
78+
79+ ** ID Format:** ` quantumrpg:[type]/[id] ` \
80+ ** Payload:** * Not supported*
6581
6682[ minecraft-exp ] : https://minecraft.gamepedia.com/Experience
6783[ skillapi ] : https://www.spigotmc.org/resources/4824/
@@ -79,3 +95,4 @@ If you use item ID without a namespace, it will search over all registries.
7995[ BukkitItemsRegistry ] : ../mimic-bukkit-api/src/main/kotlin/items/BukkitItemsRegistry.kt
8096[ MimicItemsRegistry ] : src/main/kotlin/impl/mimic/MimicItemsRegistry.kt
8197[ MinecraftItemsRegistry ] : src/main/kotlin/impl/vanilla/MinecraftItemsRegistry.kt
98+ [ ItemMetaPayload ] : src/main/kotlin/impl/vanilla/ItemMetaPayload.kt
0 commit comments