aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features/Hidden.java
blob: bc898c818eb5d0631663f4753dffee455e61b590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package at.hannibal2.skyhanni.config.features;

import at.hannibal2.skyhanni.features.garden.CropType;
import com.google.gson.annotations.Expose;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class Hidden {

    @Expose
    public String apiKey = "";

    @Expose
    public String currentPet = "";

    @Expose
    public Map<String, Long> minionLastClick = new HashMap<>();

    @Expose
    public Map<String, String> minionName = new HashMap<>();

    @Expose
    public List<String> crimsonIsleQuests = new ArrayList<>();

    @Expose
    public int crimsonIsleLatestTrophyFishInInventory = 0;

    @Expose
    public List<String> crimsonIsleMiniBossesDoneToday = new ArrayList<>();

    @Expose
    public List<String> crimsonIsleKuudraTiersDone = new ArrayList<>();

    @Expose
    public Map<CropType, Long> gardenCropCounter = new HashMap<>();

    @Expose
    public Map<CropType, Integer> gardenCropsPerSecond = new HashMap<>();

    @Expose
    public int gardenExp = -1;

    @Expose
    public Map<String, Integer> gardenDicerRngDrops = new HashMap<>();

    @Expose
    public Map<Long, List<CropType>> gardenJacobFarmingContestTimes = new HashMap<>();

    @Expose
    public Map<String, Integer> gardenFarmingArmorDrops = new HashMap<>();
}