forked from Upstream/mmocore
SkillSlot modifications
This commit is contained in:
parent
81f245a4ce
commit
456ecb9da1
@ -2,23 +2,62 @@ package net.Indyuce.mmocore.api.player.profess.skillslot;
|
||||
|
||||
import io.lumine.mythic.lib.api.math.BooleanExpressionParser;
|
||||
import net.Indyuce.mmocore.skill.ClassSkill;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.configuration.ConfigurationSection;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class SkillSlot {
|
||||
private final int slot;
|
||||
private final int slot, modelData;
|
||||
private final String expression;
|
||||
private final String name;
|
||||
private final List<String> lore;
|
||||
private Material item;
|
||||
|
||||
public SkillSlot(int slot, String expression) {
|
||||
public SkillSlot(int slot, int modelData, String expression, String name, List<String> lore, Material item) {
|
||||
this.slot = slot;
|
||||
this.expression = expression;
|
||||
this.modelData = modelData;
|
||||
this.expression = expression;
|
||||
this.name = name;
|
||||
this.lore = lore;
|
||||
this.item = item;
|
||||
}
|
||||
|
||||
public SkillSlot(ConfigurationSection section) {
|
||||
this.slot = Integer.parseInt(section.getName());
|
||||
this.expression = section.getString("expression");
|
||||
this.name = section.getString("name");
|
||||
this.lore = section.getStringList("lore");
|
||||
if (section.contains("item"))
|
||||
this.item = Material.valueOf(section.getString("item"));
|
||||
this.modelData = section.getInt("model-data", 0);
|
||||
}
|
||||
|
||||
public boolean canBePlaced(ClassSkill classSkill) {
|
||||
public int getSlot() {
|
||||
return slot;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public List<String> getLore() {
|
||||
return lore;
|
||||
}
|
||||
|
||||
public Material getItem() {
|
||||
return item;
|
||||
}
|
||||
public boolean hasItem(){
|
||||
return item!=null;
|
||||
}
|
||||
|
||||
public int getModelData() {
|
||||
return modelData;
|
||||
}
|
||||
|
||||
public boolean canPlaceSkill(ClassSkill classSkill) {
|
||||
return new BooleanExpressionParser(expression).parse(classSkill.getSkill().getCategories());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user