Package etithespirit.orimod.client.audio
Enum Class VanillaSoundIdentifier.CustomSoundType
java.lang.Object
java.lang.Enum<VanillaSoundIdentifier.CustomSoundType>
etithespirit.orimod.client.audio.VanillaSoundIdentifier.CustomSoundType
- All Implemented Interfaces:
Serializable
,Comparable<VanillaSoundIdentifier.CustomSoundType>
,Constable
- Enclosing class:
- VanillaSoundIdentifier
public static enum VanillaSoundIdentifier.CustomSoundType
extends Enum<VanillaSoundIdentifier.CustomSoundType>
A loose categorization method of sounds based on how overrides are applied.
- 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 ConstantDescriptionTake a deep breath.KUHRITIKAL SHIT.Damage that was completely ineffective against the target.Damage that dealt knockback.Damage that was more effective than usual against the target.Sweeping damage.Damage that was not very effective against the target.This sound corresponds to dying.This sound corresponds to falling onto something.This sound corresponds to taking damage.This sound has not been bound to a specific type and will use the vanilla sound instead.This sound should be omitted (not played).This sound corresponds to splashing.This sound corresponds to splashing, but if you're fat.This sound corresponds to walking on something.This sound corresponds to swimming. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_OVERWRITE
This sound has not been bound to a specific type and will use the vanilla sound instead. -
OMIT
This sound should be omitted (not played). -
STEP
This sound corresponds to walking on something. -
FALL
This sound corresponds to falling onto something. -
SWIM
This sound corresponds to swimming. -
SPLASH
This sound corresponds to splashing. -
SPLASH_BIG
This sound corresponds to splashing, but if you're fat. -
HURT
This sound corresponds to taking damage. -
DEATH
This sound corresponds to dying. -
BREATH
Take a deep breath. -
DAMAGE_KNOCKBACK
Damage that dealt knockback. -
DAMAGE_INEFFECTIVE
Damage that was completely ineffective against the target. -
DAMAGE_WEAK
Damage that was not very effective against the target. -
DAMAGE_STRONG
Damage that was more effective than usual against the target. -
DAMAGE_CRITICAL_HIT
KUHRITIKAL SHIT. HA. -
DAMAGE_SWEEP
Sweeping damage.
-
-
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
-