Enum Class DamageLevel
- All Implemented Interfaces:
Serializable
,Comparable<DamageLevel>
,Constable
Represents the effectiveness of an attack on an enemy from a spirit.
- Author:
- Eti
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionKUHRITIKAL SHIT SOLDIER_LAUGHLONG03.WAVBoi you aint doin shit fo nothinThe attack was unmodified by any resistances.The attack had some grunt to it, and did a little more damage than usual.The attack was not very effective at all, and did less damage than usual. -
Method Summary
Modifier and TypeMethodDescriptionstatic DamageLevel
Returns the enum constant of this class with the specified name.static DamageLevel[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INEFFECTIVE
Boi you aint doin shit fo nothin -
WEAK
The attack was not very effective at all, and did less damage than usual. -
STANDARD
The attack was unmodified by any resistances. -
STRONG
The attack had some grunt to it, and did a little more damage than usual. -
CRITICAL
KUHRITIKAL SHIT SOLDIER_LAUGHLONG03.WAV
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-