Browse Source

Rune attribute and max attribute adjusts parsed

combat-2
MagicBot 8 months ago
parent
commit
242984ffaf
  1. 10
      src/engine/objects/ItemTemplate.java

10
src/engine/objects/ItemTemplate.java

@ -418,6 +418,16 @@ public class ItemTemplate { @@ -418,6 +418,16 @@ public class ItemTemplate {
rune_attr_adj.put(attributeType, attributeValue);
}
JSONArray max_attr_adj_json = (JSONArray) jsonObject.get("rune_max_attr_adj");
for (Object attributeEntry : max_attr_adj_json) {
JSONObject attribute = (JSONObject) attributeEntry;
String typeString = (String) attribute.get("attr_type");
Enum.AttributeType attributeType = Enum.AttributeType.valueOf(typeString);
int attributeValue = ((Long) attribute.get("attr_value")).intValue();
rune_max_attr_adj.put(attributeType, attributeValue);
}
}

Loading…
Cancel
Save