hazer_hazer

Untitled

Sep 30th, 2019
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. import ru.ifmo.se.pokemon.*;
  2.  
  3. public class Tickle extends StatusMove{
  4.     public Tickle(){
  5.         super(Type.NORMAL, 0, 100.0);
  6.     }
  7.     protected String describe(){
  8.         return " щекочет";
  9.     }
  10.     protected void applyOppEffect(Pokemon p){
  11.         Effect eff = new Effect().stat(Stat.ATTACK, -1).stat(Stat.DEFENSE, -1);
  12.     }
  13.     protected boolean checkAccuracy(Pokemon att, Pokemon def){
  14.         return true;
  15.     }
  16. }
Add Comment
Please, Sign In to add comment