PlayerData

@Serializable
data class PlayerData(val visitedZones: List<String>? = null, val lastDeath: Long? = null, val perks: Map<String, Int>? = null, val gardenChips: Map<String, Int>? = null, val activeEffects: List<ActiveEffect>? = null, val pausedEffects: List<JsonElement>? = null, val reaperPeppersEaten: Int? = null, val tempStatBuffs: List<JsonElement>? = null, val deathCount: Int? = null, val disabledPotionEffects: List<JsonElement>? = null, val achievementSpawnedIslandTypes: List<String>? = null, val visitedModes: List<String>? = null, val unlockedCollTiers: List<String>? = null, val craftedGenerators: List<String>? = null, val fishingTreasureCaught: Int? = null, val experience: Map<String, Double>? = null)

Constructors

Link copied to clipboard
constructor(visitedZones: List<String>? = null, lastDeath: Long? = null, perks: Map<String, Int>? = null, gardenChips: Map<String, Int>? = null, activeEffects: List<ActiveEffect>? = null, pausedEffects: List<JsonElement>? = null, reaperPeppersEaten: Int? = null, tempStatBuffs: List<JsonElement>? = null, deathCount: Int? = null, disabledPotionEffects: List<JsonElement>? = null, achievementSpawnedIslandTypes: List<String>? = null, visitedModes: List<String>? = null, unlockedCollTiers: List<String>? = null, craftedGenerators: List<String>? = null, fishingTreasureCaught: Int? = null, experience: Map<String, Double>? = null)

Properties

Link copied to clipboard
@SerialName(value = "achievement_spawned_island_types")
val achievementSpawnedIslandTypes: List<String>? = null
Link copied to clipboard
@SerialName(value = "active_effects")
val activeEffects: List<ActiveEffect>? = null
Link copied to clipboard
@SerialName(value = "crafted_generators")
val craftedGenerators: List<String>? = null
Link copied to clipboard
@SerialName(value = "death_count")
val deathCount: Int? = null
Link copied to clipboard
@SerialName(value = "disabled_potion_effects")
val disabledPotionEffects: List<JsonElement>? = null
Link copied to clipboard
val experience: Map<String, Double>? = null
Link copied to clipboard
@SerialName(value = "fishing_treasure_caught")
val fishingTreasureCaught: Int? = null
Link copied to clipboard
@SerialName(value = "garden_chips")
val gardenChips: Map<String, Int>? = null
Link copied to clipboard
@SerialName(value = "last_death")
val lastDeath: Long? = null
Link copied to clipboard
@SerialName(value = "paused_effects")
val pausedEffects: List<JsonElement>? = null
Link copied to clipboard
val perks: Map<String, Int>? = null
Link copied to clipboard
@SerialName(value = "reaper_peppers_eaten")
val reaperPeppersEaten: Int? = null
Link copied to clipboard
@SerialName(value = "temp_stat_buffs")
val tempStatBuffs: List<JsonElement>? = null
Link copied to clipboard
@SerialName(value = "unlocked_coll_tiers")
val unlockedCollTiers: List<String>? = null
Link copied to clipboard
@SerialName(value = "visited_modes")
val visitedModes: List<String>? = null
Link copied to clipboard
@SerialName(value = "visited_zones")
val visitedZones: List<String>? = null