dev.aurelium.auraskills.api.stat.StatModifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auraskills-api Show documentation
Show all versions of auraskills-api Show documentation
API for AuraSkills, the ultra-versatile RPG skills plugin for Minecraft
package dev.aurelium.auraskills.api.stat;
import dev.aurelium.auraskills.api.util.AuraSkillsModifier;
public class StatModifier extends AuraSkillsModifier {
public StatModifier(String name, Stat stat, double value) {
super(name, stat, value);
}
public Stat stat() {
return type;
}
}