Skip to content

Getting Started

val fireballDefinition = basicCard("Fireball") {
    description("Deal 3 damage to a random enemy minion.")
    spell()
    cost(2)
    onPlay {
        damage(3, RandomEnemyMinion)
    }
}