Browse Source

power_granted_skills hashmap defined

combat-2
MagicBot 8 months ago
parent
commit
fcf76011f4
  1. 6
      src/engine/objects/ItemTemplate.java

6
src/engine/objects/ItemTemplate.java

@ -97,13 +97,11 @@ public class ItemTemplate {
public float deed_namelookup_val; public float deed_namelookup_val;
public boolean deed_custom_city; public boolean deed_custom_city;
public int deed_structure_id; public int deed_structure_id;
// Rune related fields
public HashMap<Enum.AttributeType, Integer> rune_attr_adj = new HashMap<>(); public HashMap<Enum.AttributeType, Integer> rune_attr_adj = new HashMap<>();
public HashMap<Enum.AttributeType, Integer> rune_max_attr_adj = new HashMap<>(); public HashMap<Enum.AttributeType, Integer> rune_max_attr_adj = new HashMap<>();
public HashMap<String, Integer> rune_skill_grant = new HashMap<>(); public HashMap<String, Integer> rune_skill_grant = new HashMap<>();
public HashMap<Integer, Integer> skill_granted_skills = new HashMap<>(); public HashMap<String, Integer> skill_granted_skills = new HashMap<>();
public HashMap<String, Integer> power_granted_skills = new HashMap<>();
public ItemTemplate(JSONObject jsonObject) { public ItemTemplate(JSONObject jsonObject) {

Loading…
Cancel
Save