package domain.sheets; public class Fives extends Category { @Override public int calcValueFromAmount() { this.value = this.amount * 5; return this.value; } }