Package org.pokenet.server.battle

Examples of org.pokenet.server.battle.PokemonSpeciesData


     */
    public void loadModData(File f) {
        try {
            FileInputStream input = new FileInputStream(f);
            m_uuid = f.getName();
            m_species = new PokemonSpeciesData();
            m_species.loadSpeciesDatabase(input, false);
            m_moveSets = new MoveSetData();
            m_moveSets.loadFromFile(input);
            m_moveSets.pruneMoveSet(); // Slow, but avoids errors.
            m_items = new HoldItemData();
View Full Code Here

TOP

Related Classes of org.pokenet.server.battle.PokemonSpeciesData

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.