Files
LeterZP 329aa90447 Add 'Programming/ProgLab2/' from commit '20f33961b8c264e4cdcac7e6cdd7a7bfb744cc93'
git-subtree-dir: Programming/ProgLab2
git-subtree-mainline: 148a148266
git-subtree-split: 20f33961b8
2026-02-13 20:01:17 +03:00

12 lines
226 B
Java

package pokemons;
import moves.*;
public class Nidorina extends NidoranF {
public Nidorina(String name, int level) {
super(name, level);
setStats(13, 6, 6, 6, 6, 6);
addMove(new Growl());
}
}