... | @@ -89,4 +89,28 @@ TestGem: |
... | @@ -89,4 +89,28 @@ TestGem: |
|
- CRITICAL_STRIKE_CHANCE 0.05 ADDITIVE
|
|
- CRITICAL_STRIKE_CHANCE 0.05 ADDITIVE
|
|
Skills:
|
|
Skills:
|
|
- fireball @targetlocation ~onUse
|
|
- fireball @targetlocation ~onUse
|
|
``` |
|
```
|
|
\ No newline at end of file |
|
|
|
|
|
## Creating Augment Removers
|
|
|
|
To remove augments from an item, an item can be created using the following syntax
|
|
|
|
```yaml
|
|
|
|
GemRemover:
|
|
|
|
Material: NETHERITE_SCRAP
|
|
|
|
Display: '<aqua>Gem Remover'
|
|
|
|
AugmentationRemover:
|
|
|
|
Type: GEM # The type of gem it should remove
|
|
|
|
DestroySocket: false # Should the augment slot be removed entirely?
|
|
|
|
ReturnAugment: true # Should the augment be returned to the player?
|
|
|
|
```
|
|
|
|
|
|
|
|
## Unlocking Extra Slots
|
|
|
|
The following item can be used to unlock an extra augment slot on a different item:
|
|
|
|
```yaml
|
|
|
|
GemSlotUnlocker:
|
|
|
|
Material: NETHERITE_SCRAP
|
|
|
|
Display: '<aqua>Gem Slot Unlocker'
|
|
|
|
AugmentationSocket:
|
|
|
|
Type: GEM # Type of slot to unlock
|
|
|
|
MaxSockets: 3 # Amount of available slots a target item can have.
|
|
|
|
```
|
|
|
|
If a `GEM` augment on an item has `MaxAmount` set to `2`, the Gem Slot Unlocker will not be able to unlock a 3rd slot on that item. If that item as a `MaxAmount` of 5, this Gem Slot Unlocker cannot unlock the 4th and 5th slot on that item. |
|
|
|
\ No newline at end of file |