University stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LegemiddelNarkotisk.java 316B

12345678910111213
  1. class LegemiddelNarkotisk extends Legemiddel {
  2. int styrke;
  3. LegemiddelNarkotisk(int id, int pris, String navn, int styrke, int totaltVirkestoff) {
  4. super(id, pris, navn, totaltVirkestoff);
  5. this.styrke = styrke;
  6. }
  7. public String identify() {
  8. return "Narkotisk"+super.identify()+
  9. ", styrke: "+styrke;
  10. }
  11. }