Package catchemrpg.gameobjects

Examples of catchemrpg.gameobjects.Monster


          {
            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);
View Full Code Here

TOP

Related Classes of catchemrpg.gameobjects.Monster

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.