class LegemiddelNarkotisk extends Legemiddel { int styrke; LegemiddelNarkotisk(int id, int pris, String navn, int styrke, int totaltVirkestoff) { super(id, pris, navn, totaltVirkestoff); this.styrke = styrke; } public String identify() { return "Narkotisk"+super.identify()+ ", styrke: "+styrke; } }