ru.cwcode.commands.paperplatform.argument.PotionEffectArg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of PaperCommands Show documentation
Show all versions of PaperCommands Show documentation
Commands library for Paper (Minecraft)
The newest version!
package ru.cwcode.commands.paperplatform.argument;
import org.bukkit.potion.PotionEffectType;
import ru.cwcode.commands.Argument;
import ru.cwcode.commands.api.Sender;
import java.util.Arrays;
import java.util.Set;
import java.util.stream.Collectors;
import static ru.cwcode.commands.api.CommandsAPI.l10n;
public class PotionEffectArg extends Argument {
static Set effects = Arrays.stream(PotionEffectType.values()).map(PotionEffectType::getName).collect(Collectors.toSet());
@Override
public boolean valid(String raw) {
return effects.contains(raw);
}
@Override
public Set completions(Sender sender) {
return effects;
}
@Override
public String argumentName() {
return l10n.get("argument.potionEffect.name");
}
@Override
public Object map() {
return PotionEffectType.getByName(raw);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy