openlegends_core/
card.rs

1pub mod cost;
2pub mod group;
3pub mod rarity;
4
5pub use cost::Cost;
6pub use group::Group;
7pub use rarity::Rarity;
8
9pub struct Card {
10    pub cost: Cost,
11    pub description: String,
12    pub prophecy: bool,
13    pub name: String,
14    pub rarity: Rarity,
15}