enchantment wip

This commit is contained in:
unurled 2024-02-27 20:59:23 +01:00
parent 2cbaae4300
commit e34a790837
Signed by: unurled
GPG key ID: FDBC9CBE1F82423F

View file

@ -1,3 +1,25 @@
package me.unurled.sacredrealms.sr.components.item.enchantments;
public class Enchantment {}
public class Enchantment {
private final String name;
private final String ID;
private final Integer maxLevel;
public Enchantment(String name, String ID, Integer maxLevel) {
this.name = name;
this.ID = ID;
this.maxLevel = maxLevel;
}
public String getName() {
return name;
}
public String getID() {
return ID;
}
public Integer getMaxLevel() {
return maxLevel;
}
}