ComposterData

@Serializable
data class ComposterData(val organicMatter: Double? = null, val fuel: Double? = null, val compostUnits: Int? = null, val compostItems: Int? = null, val conversionTicks: Int? = null, val lastSave: Long? = null, val upgrades: ComposterUpgrades? = null)

Information about the Garden's composter.

Constructors

Link copied to clipboard
constructor(organicMatter: Double? = null, fuel: Double? = null, compostUnits: Int? = null, compostItems: Int? = null, conversionTicks: Int? = null, lastSave: Long? = null, upgrades: ComposterUpgrades? = null)

Properties

Link copied to clipboard
@SerialName(value = "compost_items")
val compostItems: Int? = null

Either this or composteUnits are the amount of compost in the composter, the other is unknown.

Link copied to clipboard
@SerialName(value = "compost_units")
val compostUnits: Int? = null

Either this or composteItems are the amount of compost in the composter, the other is unknown.

Link copied to clipboard
@SerialName(value = "conversion_ticks")
val conversionTicks: Int? = null

Unknown.

Link copied to clipboard
@SerialName(value = "fuel_units")
val fuel: Double? = null

The amount of fuel currently in the composter.

Link copied to clipboard
@SerialName(value = "last_save")
val lastSave: Long? = null

The timestamp the composter was last modified (eg; fuel put in, compost taken).

Link copied to clipboard
@SerialName(value = "organic_matter")
val organicMatter: Double? = null

The amount of organic matter currently in the composter.

Link copied to clipboard

Upgrades levels for the composter.