Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import ru.ifmo.se.pokemon.*;
- public class Scald extends SpecialMove{
- public Scald(){
- super(Type.WATER, 80.0, 100.0);
- }
- protected String describe(){
- return "ошпарил";
- }
- protected void applyOppEffect(Pokemon p){
- Effect eff = new Effect().chance(0.3);
- eff.burn(p);
- }
- protected boolean checkAccuracy(Pokemon att, Pokemon def){
- return true;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement