Package org.pokenet.server.battle.mechanics.statuses.field

Examples of org.pokenet.server.battle.mechanics.statuses.field.HailEffect


        return;
      case RAIN:
        this.applyEffect(new RainEffect());
        return;
      case HAIL:
        this.applyEffect(new HailEffect());
        return;
      case SANDSTORM:
        this.applyEffect(new SandstormEffect());
        return;
      default:
View Full Code Here


    case NORMAL:
      return null;
    case RAIN:
      return new RainEffect();
    case HAIL:
      return new HailEffect();
    case SANDSTORM:
      return new SandstormEffect();
    case FOG:
      return null;
    default:
View Full Code Here

        return;
      case RAIN:
        this.applyEffect(new RainEffect());
        return;
      case HAIL:
        this.applyEffect(new HailEffect());
        return;
      case SANDSTORM:
        this.applyEffect(new SandstormEffect());
        return;
      default:
View Full Code Here

        return;
      case RAIN:
        this.applyEffect(new RainEffect());
        return;
      case HAIL:
        this.applyEffect(new HailEffect());
        return;
      case SANDSTORM:
        this.applyEffect(new SandstormEffect());
        return;
      default:
View Full Code Here

TOP

Related Classes of org.pokenet.server.battle.mechanics.statuses.field.HailEffect

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.