Skill

@Serializable
data class Skill(val name: String? = null, val description: String? = null, val maxLevel: Int? = null, val levels: List<Level>? = null)

Information about a skill

Constructors

Link copied to clipboard
constructor(name: String? = null, description: String? = null, maxLevel: Int? = null, levels: List<Level>? = null)

Properties

Link copied to clipboard
val description: String? = null

The skills description

Link copied to clipboard
val levels: List<Level>? = null

A list of information and rewards about each level for a skill

Link copied to clipboard
val maxLevel: Int? = null

Maximum level possible for the skill, including level cap increases.

Link copied to clipboard
val name: String? = null

The name of the skill (eg; Farming, Mining)