Unicopia/src/main/java/com/minelittlepony/unicopia/ability/AbilitySlot.java

26 lines
592 B
Java
Raw Normal View History

2020-05-06 15:55:25 +02:00
package com.minelittlepony.unicopia.ability;
public enum AbilitySlot {
NONE,
2022-09-26 21:07:14 +02:00
/**
* The primary ability. Corresponds to the largest ring in the HUD
*/
2020-05-06 15:55:25 +02:00
PRIMARY,
2022-09-26 21:07:14 +02:00
/**
* THe secondary ability. Corresponds to the top small ring in the HUD
*/
2020-05-06 15:55:25 +02:00
SECONDARY,
2022-09-26 21:07:14 +02:00
/**
* The tertiary ability. Corresponds to the bottom small ring in the HUD.
*/
2020-05-06 15:55:25 +02:00
TERTIARY,
2022-09-26 21:07:14 +02:00
/**
* The passive primary ability. Appears in place of the primary ability whilst sneaking.
*/
2020-05-06 15:55:25 +02:00
PASSIVE;
public boolean isPassive() {
return this == PASSIVE;
}
}