Allow card cost to be null

This commit is contained in:
2024-04-05 11:10:17 +02:00
parent f06de888e5
commit 0b2f4ea18e
+1 -1
View File
@@ -16,7 +16,7 @@ class Card(Serializable):
self,
sprite: str,
name: str,
cost: int,
cost: int | None,
card_type: CardType,
faction: CardFaction,
):