ProgLab2/pass

This commit is contained in:
LeterZP
2026-02-13 19:59:26 +03:00
commit 20f33961b8
19 changed files with 320 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package moves;
import ru.ifmo.se.pokemon.*;
public final class AuraSphere extends SpecialMove {
public AuraSphere() {
super(Type.FIGHTING, 80, 1);
}
@Override protected boolean checkAccuracy(Pokemon att, Pokemon def) {
return true;
}
@Override protected String describe() {
return "выпускает шар ауры";
}
}