Package com.pokemon.mmo.Enums

Examples of com.pokemon.mmo.Enums.MoveFlag


        }
       
        rs = adapter.makeQuery("SELECT * FROM move_flag_map WHERE move_id = '" +
            String.valueOf(i) + "'");
        while(rs.next()) {
          MoveFlag flag = MoveFlag.getFlag(rs.getInt("move_flag_id"));
          move.setMoveFlag(flag);         
        }
               
        switch(move.getMoveEffect()) {
        case 30 :
View Full Code Here

TOP

Related Classes of com.pokemon.mmo.Enums.MoveFlag

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.