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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
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 at.hannibal2.skyhanni.features.garden.farming.FarmingArmorDrops;
import at.hannibal2.skyhanni.features.garden.visitor.VisitorReward;
import com.google.gson.annotations.Expose;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class OldHidden {
@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 Map<CropType, Double> gardenLatestBlocksPerSecond = new HashMap<>();
@Expose
public Map<CropType, Double> gardenLatestTrueFarmingFortune = 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 long nextSixthVisitorArrival = 0;
@Expose
public Map<Long, List<CropType>> gardenJacobFarmingContestTimes = new HashMap<>();
@Expose
public Map<FarmingArmorDrops.ArmorDropType, 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 = "";
@Expose
public VisitorDrops visitorDrops = new VisitorDrops();
public static class VisitorDrops {
@Expose
public int acceptedVisitors = 0;
@Expose
public int deniedVisitors = 0;
@Expose
public List<Long> visitorRarities = new ArrayList<>();
@Expose
public int copper = 0;
@Expose
public long farmingExp = 0;
@Expose
public long coinsSpent = 0;
@Expose
public Map<VisitorReward, Integer> rewardsCount = new HashMap<>();
}
@Expose
public boolean isMigrated = false;
}
|