ProgLab2/pass
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package pokemons;
|
||||
|
||||
import ru.ifmo.se.pokemon.*;
|
||||
import moves.*;
|
||||
|
||||
public class NidoranF extends Pokemon {
|
||||
public NidoranF(String name, int level) {
|
||||
super(name, level);
|
||||
setStats(12, 6, 6, 6, 6, 6);
|
||||
setType(Type.POISON);
|
||||
setMove(new Thunderbolt(), new Rest());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user