enchantment wip
This commit is contained in:
parent
2cbaae4300
commit
e34a790837
1 changed files with 23 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue