commonMain.eu.codlab.lorcana.raw.Variant.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lorcana-data Show documentation
Show all versions of lorcana-data Show documentation
Lorcana set descriptions and data
package eu.codlab.lorcana.raw
import eu.codlab.lorcana.cards.ClassificationHolder
import eu.codlab.lorcana.cards.Erratas
import eu.codlab.lorcana.cards.Language
import eu.codlab.lorcana.cards.VariantRarity
import eu.codlab.lorcana.cards.to
import kotlinx.serialization.Serializable
@Serializable
data class Variant(
val set: SetDescription,
val id: Int,
val rarity: VariantRarity,
val illustrator: String? = null,
val erratas: Map>? = null
)
fun Variant.to(
mapOfClassifications: Map
): Variant = Variant(
set = set,
id = id,
rarity = rarity,
illustrator = illustrator,
erratas = if (null == erratas) {
null
} else {
mutableMapOf>().let { map ->
erratas.keys.forEach { language ->
map[language] = erratas[language]!!.to(mapOfClassifications)
}
map
}
}
)