class Squirtle extends Pokemon { public Squirtle(String navn, int hp, int atk){ this.navn = navn; this.hp = hp; this.atk = atk; } public void regen(){ System.out.println(navn + " bruker regen!"); hp += atk; } }