Advertisement
VTsilaLETImogila

Untitled

Oct 13th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. package laba1.moves;
  2. import ru.ifmo.se.pokemon.*;
  3.  
  4. public class SleepPowder extends StatusMove {
  5.     public  SleepPowder(){
  6.         super(Type.GRASS,0 ,75);
  7.     }
  8.     @Override
  9.     public void applyOppEffects(Pokemon p) {
  10.         Effect.sleep(p);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement