ComposterUpgrades

@Serializable
data class ComposterUpgrades(val speed: Int? = null, val multiDrop: Int? = null, val fuelCap: Int? = null, val organicMatterCap: Int? = null, val costReduction: Int? = null)

Upgrade levels for the composter.

Constructors

Link copied to clipboard
constructor(speed: Int? = null, multiDrop: Int? = null, fuelCap: Int? = null, organicMatterCap: Int? = null, costReduction: Int? = null)

Properties

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

The cost reduction cap of the composter.

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

The fuel cap upgrade of the composter.

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

The multi drop upgrade of the composter.

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

The organic matter cap of the composter.

Link copied to clipboard
val speed: Int? = null

The speed upgrade of the composter.