Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import ru.ifmo.se.pokemon.*;
- public class Tickle extends StatusMove{
- public Tickle(){
- super(Type.NORMAL, 0, 100.0);
- }
- protected String describe(){
- return " щекочет";
- }
- protected void applyOppEffect(Pokemon p){
- Effect eff = new Effect().stat(Stat.ATTACK, -1).stat(Stat.DEFENSE, -1);
- }
- protected boolean checkAccuracy(Pokemon att, Pokemon def){
- return true;
- }
- }
Add Comment
Please, Sign In to add comment