BasicCardDefinition

data class BasicCardDefinition(val id: String, val types: List<CardType> = listOf(), val triggeredAbilities: List<TriggeredAbility> = listOf(), val continuousAbilities: List<ContinuousAbility> = listOf(), val name: String, val description: String, val cost: Int = 0, val keywords: List<Keyword> = listOf(), val attack: Int? = null, val health: Int? = null) : CardDefinition

Constructors

Link copied to clipboard
constructor(id: String, types: List<CardType> = listOf(), triggeredAbilities: List<TriggeredAbility> = listOf(), continuousAbilities: List<ContinuousAbility> = listOf(), name: String, description: String, cost: Int = 0, keywords: List<Keyword> = listOf(), attack: Int? = null, health: Int? = null)

Properties

Link copied to clipboard
val attack: Int?
Link copied to clipboard
Link copied to clipboard
val cost: Int
Link copied to clipboard
Link copied to clipboard
val health: Int?
Link copied to clipboard
open override val id: String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val types: List<CardType>