All Downloads are FREE. Search and download functionalities are using the official Maven repository.

payload.common.ItemAuction.kt Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package payload.common

import enums.AuctionType
import enums.ItemUrlName
import enums.Polarity
import enums.RivenAttribute

data class ItemAuction(
	val weapon_url_name: ItemUrlName,
	val name: String,//rivens and liches have random generated names
	val type: AuctionType,
	val attributes: List,
	val mastery_level: Int,
	val mod_rank: Int,
	val re_rolls: Int,
	val polarity: Polarity
) {
	data class Attribute(
		val url_name: RivenAttribute,
		val positive: Boolean,
		val value: Float
	)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy