blob: ef36a932335dca7972db370bc8b24a817e377407 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package at.hannibal2.skyhanni.data.jsonobjects.repo
import com.google.gson.annotations.Expose
import com.google.gson.annotations.SerializedName
class DicerDropsJson(
@Expose val MELON: DicerType,
@Expose val PUMPKIN: DicerType,
)
data class DicerType(
@Expose @SerializedName("total chance") val totalChance: Int,
@Expose val drops: List<DropInfo>,
)
data class DropInfo(
@Expose val chance: Int,
@Expose val amount: List<Int>,
)
|