{
int lvl = Integer.parseInt(e3.attributeValue("lvl"));
double hp = Double.parseDouble(e3.attributeValue("hp"));
double mp = Double.parseDouble(e3.attributeValue("mp"));
double cp = Double.parseDouble(e3.attributeValue("cp"));
lvl_up_data.put(lvl, new LvlUpData(hp, mp, cp));
}
}
}
}
}