Refactor skill_used

This commit is contained in:
2024-03-10 14:10:51 -04:00
parent e47bd6fba0
commit f616937236
5 changed files with 14 additions and 21 deletions
-8
View File
@@ -35,8 +35,6 @@ public class ItemBase {
private int hashID;
private final byte useAmount;
// Armor and weapon related values
private final String skillRequired;
private final short percentRequired;
private final short defense;
private final float dexPenalty;
@@ -65,7 +63,6 @@ public class ItemBase {
this.hashID = rs.getInt("itemHashID");
this.isConsumable = false;
this.skillRequired = rs.getString("skillRequired");
this.percentRequired = rs.getShort("percentRequired");
this.defense = rs.getShort("defense");
this.dexPenalty = rs.getFloat("dexPenalty");
@@ -248,11 +245,6 @@ public class ItemBase {
public boolean isTwoHanded() {
return this.twoHanded;
}
public String getSkillRequired() {
return skillRequired;
}
public String getMastery() {
return mastery;
}