Ребятушки, Хелп!
Бьются роботы у меня в Идее, а валидатор кричит, что "неправда" все это. В чем сила, рассудите???
package com.javarush.task.task13.task1328;
public class Robot extends AbstractRobot implements Defensable, Attackable {
private static int hitCount;
private String name;
public Robot(String name) {
this.name = name;
}
public String getName() {
return name;
}
public BodyPart attack() {
BodyPart attackedBodyPart = null;
hitCount = hitCount + 1;
if (hitCount == 1) {
attackedBodyPart = BodyPart.ARM;
} else if (hitCount == 2) {
attackedBodyPart = BodyPart.HEAD;
} else if (hitCount == 3) {
attackedBodyPart = BodyPart.LEG;
} else if (hitCount == 4) {
hitCount = 0;
attackedBodyPart = BodyPart.CHEST;
}
return attackedBodyPart;
}
public BodyPart defense() {
BodyPart defendedBodyPart = null;
hitCount = hitCount + 2;
if (hitCount == 1) {
defendedBodyPart = BodyPart.HEAD;
} else if (hitCount == 2) {
defendedBodyPart = BodyPart.LEG;
} else if (hitCount == 3) {
defendedBodyPart = BodyPart.ARM;
} else if (hitCount == 4) {
hitCount = 0;
defendedBodyPart = BodyPart.CHEST;
}
return defendedBodyPart;
}
}