Add 'Programming/ProgLab2/' from commit '20f33961b8c264e4cdcac7e6cdd7a7bfb744cc93'
git-subtree-dir: Programming/ProgLab2 git-subtree-mainline:148a148266git-subtree-split:20f33961b8
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package pokemons;
|
||||
|
||||
import ru.ifmo.se.pokemon.*;
|
||||
import moves.*;
|
||||
|
||||
public class Cranidos extends Pokemon {
|
||||
public Cranidos(String name, int level) {
|
||||
super(name, level);
|
||||
setStats(12, 8, 6, 6, 6, 6);
|
||||
setType(Type.ROCK);
|
||||
setMove(new Facade(), new Headbutt(), new RockTomb());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user