Document each slot type

This commit is contained in:
Sollace 2022-09-26 21:07:14 +02:00
parent 7381f6181e
commit 66cbf1ff2b

View file

@ -2,9 +2,21 @@ package com.minelittlepony.unicopia.ability;
public enum AbilitySlot {
NONE,
/**
* The primary ability. Corresponds to the largest ring in the HUD
*/
PRIMARY,
/**
* THe secondary ability. Corresponds to the top small ring in the HUD
*/
SECONDARY,
/**
* The tertiary ability. Corresponds to the bottom small ring in the HUD.
*/
TERTIARY,
/**
* The passive primary ability. Appears in place of the primary ability whilst sneaking.
*/
PASSIVE;
public boolean isPassive() {