Browse Source

not_enemy_types_json parsed

combat-2
MagicBot 7 months ago
parent
commit
5054006ffc
  1. 9
      src/engine/objects/ItemTemplate.java

9
src/engine/objects/ItemTemplate.java

@ -504,6 +504,15 @@ public class ItemTemplate { @@ -504,6 +504,15 @@ public class ItemTemplate {
rune_enemy_monster_types.add(monsterType);
}
JSONArray not_enemy_types_json = (JSONArray) jsonObject.get("rune_not_enemy_monster_types");
for (Object o : enemy_types_json) {
String notenemy = (String) o;
notenemy = notenemy.replaceAll("-", "");
Enum.MonsterType monsterType = Enum.MonsterType.valueOf(notenemy);
not_enemy_types_json.add(monsterType);
}
rune_renderable = ((Boolean) jsonObject.get("rune_renderable"));
rune_natural_power_attack = ((Long) jsonObject.get("rune_natural_power_attack")).intValue();

Loading…
Cancel
Save