Advertisement
VTsilaLETImogila

Untitled

Oct 13th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. package laba1.moves;
  2. import ru.ifmo.se.pokemon.*;
  3.  
  4. public class HammerArm extends PhysicalMove {
  5.     public HammerArm(){
  6.         super(Type.FIGHTING,100,90);
  7.     }
  8.     @Override
  9.     public void applySelfEffects (Pokemon p){
  10.         p.setMod(Stat.SPEED,-1);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement