Minestom/src/main/java/net/minestom/server/entity/damage/DamageType.java

60 lines
1.6 KiB
Java

package net.minestom.server.entity.damage;
import net.minestom.server.registry.StaticProtocolObject;
import net.minestom.server.registry.Registry;
import net.minestom.server.utils.NamespaceID;
import org.jetbrains.annotations.Contract;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jglrxavpok.hephaistos.nbt.NBTCompound;
import java.util.Collection;
public sealed interface DamageType extends StaticProtocolObject, DamageTypes permits DamageTypeImpl {
/**
* Returns the damage type registry.
*
* @return the damage type registry
*/
@Contract(pure = true)
@NotNull Registry.DamageTypeEntry registry();
@Override
default @NotNull NamespaceID namespace() {
return registry().namespace();
}
default double exhaustion() {
return registry().exhaustion();
}
default String messageId() {
return registry().messageId();
}
default String scaling() {
return registry().scaling();
}
NBTCompound asNBT();
static @NotNull Collection<@NotNull DamageType> values() {
return DamageTypeImpl.values();
}
static DamageType fromNamespaceId(@NotNull String namespaceID) {
return DamageTypeImpl.getSafe(namespaceID);
}
static DamageType fromNamespaceId(@NotNull NamespaceID namespaceID) {
return fromNamespaceId(namespaceID.asString());
}
static @Nullable DamageType fromId(int id) {
return DamageTypeImpl.getId(id);
}
static NBTCompound getNBT() {
return DamageTypeImpl.getNBT();
}
}