CollectionTier

@Serializable
data class CollectionTier(val tier: Int? = null, val amountRequired: Int? = null, val unlocks: List<String>? = null)

Information about a collection item tier.

Constructors

Link copied to clipboard
constructor(tier: Int? = null, amountRequired: Int? = null, unlocks: List<String>? = null)

Properties

Link copied to clipboard
val amountRequired: Int? = null

The collected amount required for the tier.

Link copied to clipboard
val tier: Int? = null

What tier it is.

Link copied to clipboard
val unlocks: List<String>? = null

A list of what the tier unlocks once reached.