RuneHive-Game
Loading...
Searching...
No Matches
AntifireDetails.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.combat.effect;
2
3import com.runehive.util.MutableNumber;
4
5public final class AntifireDetails {
6
7 private final MutableNumber antifireDelay = new MutableNumber(600);
8
9 private final AntifireType type;
10
12 this.type = type;
13 }
14
16 return antifireDelay;
17 }
18
20 return type;
21 }
22
23 public enum AntifireType {
25 SUPER(90);
26
27 final int reduction;
28
30 this.reduction = reduction;
31 }
32
33 public int getReduction() {
34 return reduction;
35 }
36 }
37
38}
The container class that contains functions to simplify the modification of a number.