docs/configuration/Suit

Suit

Values

To edit the suit, simply change the values of head, chest, legs, and or boots under the suit configuration section you wish to change. Item IDs and Materials may be used, data values cannot be used. That being said, setting head to 35 will allow the suit to be activated with any colour wool.

You can set values of 0 (zero) to make a "suit of nothing". Invalid values will be treated as wildcards. Wildcards allow any type of item to be counted as part of the suit (even air).

Multiple Suits

To configure multiple suits, you will need to generate another section in your configuration called suit, but with a suffix of the suit number it is. Your first suit cannot have a suffix, and must be just suit. For a second suit, the configuration section would be called suit2, and so on...

Examples

Multiple Suits

suit: 
    head: diamond_helmet
    chest: diamond_chestplate
    legs: diamond_leggings
    boots: diamond_boots
suit2:
    head: iron_helmet
    chest: iron_chestplate
    legs: iron_leggings
    boots: iron_boots

Wool Helmet

suit:
    head: 35
    chest: 0
    legs: 0
    boots: 0

Suit of Nothing

suit:
    head: 0
    chest: 0
    legs: 0
    boots: 0

Suit of Anything

suit:
    head: any
    chest: any
    legs: any
    boots: any