blob: 6deb9876d9e459627da6867342646cd66ea2ab23 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
package at.hannibal2.skyhanni.config.features;
import at.hannibal2.skyhanni.data.model.ComposterUpgrade;
import at.hannibal2.skyhanni.features.garden.CropAccessory;
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> gardenCropUpgrades = new HashMap<>();
@Expose
public Map<CropType, Integer> gardenCropsPerSecond = new HashMap<>();
@Expose
public int gardenExp = -1;
@Expose
public CropAccessory savedCropAccessory = null;
@Expose
public Map<String, Integer> gardenDicerRngDrops = new HashMap<>();
@Expose
public long informedAboutLowMatter = 0;
@Expose
public long informedAboutLowFuel = 0;
@Expose
public long visitorInterval = 15 * 60_000L;
@Expose
public Map<Long, List<CropType>> gardenJacobFarmingContestTimes = new HashMap<>();
@Expose
public Map<String, Integer> gardenFarmingArmorDrops = new HashMap<>();
@Expose
public Map<ComposterUpgrade, Integer> gardenComposterUpgrades = new HashMap<>();
@Expose
public Map<CropType, Boolean> gardenToolHasBountiful = new HashMap<>();
@Expose
public String gardenComposterCurrentOrganicMatterItem = "";
@Expose
public String gardenComposterCurrentFuelItem = "";
}
|