blob: 996a558eaf8ee1146b3bfba9ecaa0b00a8911d4a (
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
|
package at.hannibal2.skyhanni.utils.jsonobjects;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class DicerDropsJson {
@Expose
public DicerType MELON;
@Expose
public DicerType PUMPKIN;
public static class DicerType {
@Expose
@SerializedName("total chance")
public Integer totalChance;
@Expose
public List<DropInfo> drops;
}
public static class DropInfo {
@Expose
public Integer chance;
@Expose
public List<Integer> amount;
}
}
|