{
for (int i = 0; i < 5; i++)
{
//Get creature ID, for use with language queries for Monster metadata.
int ID = Integer.parseInt(properties.getProperty("monsters$current$" + (i + 1) + "$id", "0"));
CharacterData.monsterList[i] = new Monster();
CharacterData.monsterList[i].NAME = BaseVars.lang.monsterNames.get(ID);
CharacterData.monsterList[i].imagePath = properties.getProperty("monsters$current$" + (i + 1) + "$imgpath", "");
CharacterData.monsterList[i].CATEGORY1 = BaseVars.lang.monsterCat1s.get(ID);
CharacterData.monsterList[i].CATEGORY2 = BaseVars.lang.monsterCat2s.get(ID);