30public final class AntifireDetails {
32 private final MutableNumber antifireDelay =
new MutableNumber(600);
34 private final AntifireType type;
36 public AntifireDetails(AntifireType type) {
40 public MutableNumber getAntifireDelay() {
44 public AntifireType getType() {
48public enum AntifireType {
54 AntifireType(
int reduction) {
55 this.reduction = reduction;
58 public int getReduction() {