Level

@Serializable
data class Level(val level: Int? = null, val totalExpRequired: Long? = null, val unlocks: List<String>? = null)

Information and rewards about a level

Constructors

Link copied to clipboard
constructor(level: Int? = null, totalExpRequired: Long? = null, unlocks: List<String>? = null)

Properties

Link copied to clipboard
val level: Int? = null

The skill level

Link copied to clipboard
val totalExpRequired: Long? = null

The total amount of experience required for the level

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

A list of rewards for the level (eg; +250 Coins, +5 SkyBlock XP)