... | ... | @@ -61,8 +61,20 @@ LONG_SWORD: |
|
|
display: IRON_SWORD:0
|
|
|
name: 'Long Sword'
|
|
|
parent: 'SWORD'
|
|
|
unident-item:
|
|
|
name: '&f#prefix#Unidentified Long Sword'
|
|
|
lore:
|
|
|
- '&7This item is unidentified. I must'
|
|
|
- '&7find a way to identify it!'
|
|
|
- '{tier}'
|
|
|
- '{tier}&8Item Info:'
|
|
|
- '{range}&8- &7Lvl Range: &e#range#'
|
|
|
- '{tier}&8- &7Item Tier: #prefix##tier#'
|
|
|
```
|
|
|
|
|
|
For instance, this adds an item type called Long Sword which behaves exactly like the SWORD item type. The type parent defines how the item type will behave. When set to 'GEM_STONE', the type will behave exactly like a gem stone and you will be able to give your item any gem stone stat. The type name is the name displayed in /mi browse, in the recipe list or on the item lore.
|
|
|
|
|
|
The `unident-item` config section dictates how an unidentified item from that item category looks like. You can change the item display name and lore using given placeholders. #prefix# corresponds to the item TIER color prefix which thus depend on the unidentified item's tier. #prefix# is the display name of the unidentified item tier. #range# is the unidentified item's level range which also depends on its item tier.\
|
|
|
Lines starting with {tier} only display if the unidentified item has a tier. Lines starting with {range} only display if the item has the 'Required Level' item stat.
|
|
|
|
|
|
You can add as many new item types as you want. Do not forget to use /mi reload after adding new item types, this way the config files corresponding to your item type (located in /MMOItems/item/) are generated. If your item type was successfully registered in MMOItems, you should be able to find it in the command auto tab completions. |
|
|
\ No newline at end of file |