commonMain.eu.codlab.lorcana.abilities.Ability.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.abilities
import eu.codlab.tcgmapper.TranslationHolder
import kotlinx.serialization.Serializable
@Serializable
data class Ability(
val logic: String? = null, // unused for now, provided for future versions
val values: AbilityValues? = null,
val title: TranslationHolder? = null,
val text: TranslationHolder? = null,
val reference: String? = null
)