Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import ru.ifmo.se.pokemon.*;
- public class IceBeam extends SpecialMove{
- public IceBeam(){
- super(Type.ICE, 90.0, 100.0);
- }
- protected String describe(){
- return " иcпользовал водRную пушку";
- }
- protected void applyOppEffect(Pokemon p){
- Effect eff = new Effect().chance(0.1);
- eff.freeze(p);
- }
- protected boolean checkAccuracy(Pokemon att, Pokemon def){
- return true;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement