Yatzy/Domain/Fours.java

30 lines
553 B
Java
Raw Permalink Normal View History

2024-05-03 21:10:44 +02:00
package Domain;
public class Fours extends Category{
2024-05-06 16:03:55 +02:00
public Fours() {
2024-05-03 21:10:44 +02:00
super("Fours", "Score of all the fours rolled.");
}
@Override
public boolean correctCategory(int[] values){
for(int i : values){
if(i == 4){
return true;
}
}
return false;
}
@Override
2024-05-06 15:57:22 +02:00
public int getScore(int[] values){
2024-05-03 21:10:44 +02:00
int score = 0;
2024-05-06 15:57:22 +02:00
for(int i : values){
2024-05-03 21:10:44 +02:00
if( i == 4 ){
2024-05-06 15:57:22 +02:00
score += 4;
2024-05-03 21:10:44 +02:00
}
}
return score;
}
}