|
|
|
@ -36,8 +36,8 @@ public class ItemBase {
@@ -36,8 +36,8 @@ public class ItemBase {
|
|
|
|
|
private static HashMap<Integer, Integer> itemHashIDMap = new HashMap<>(); |
|
|
|
|
private static HashMap<String, Integer> _IDsByNames = new HashMap<>(); |
|
|
|
|
private static ArrayList<ItemBase> _resourceList = new ArrayList<>(); |
|
|
|
|
private final int uuid; |
|
|
|
|
private final String name; |
|
|
|
|
private int uuid; |
|
|
|
|
private String name; |
|
|
|
|
private float durability; |
|
|
|
|
private int value; |
|
|
|
|
private short weight; |
|
|
|
@ -723,7 +723,12 @@ public class ItemBase {
@@ -723,7 +723,12 @@ public class ItemBase {
|
|
|
|
|
public final int getUUID() { |
|
|
|
|
return uuid; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setUUID(int id) { |
|
|
|
|
this.uuid = id; |
|
|
|
|
} |
|
|
|
|
public void setName(String name) { |
|
|
|
|
this.name = name; |
|
|
|
|
} |
|
|
|
|
public boolean isRing() { |
|
|
|
|
return ((this.equipFlag & (64 | 128 | 192)) != 0); |
|
|
|
|
} |
|
|
|
|