Rune attribute and max attribute adjusts parsed

This commit is contained in:
2024-04-02 14:44:50 -04:00
parent 4746a8c9cf
commit 242984ffaf
+10
View File
@@ -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);
}
}