1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-10-16 17:47:29 +00:00

Remove more localized things

This commit is contained in:
Steffo 2022-08-02 10:40:05 +02:00
parent 6697e45143
commit a67856e668
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -51,15 +51,13 @@ pub struct Card {
/// List of keywords of this card, with their internal names. /// List of keywords of this card, with their internal names.
pub keyword_refs: Vec<String>, pub keyword_refs: Vec<String>,
/// Localized spell speed.
pub spell_speed: String,
/// [SpellSpeed] of the card. /// [SpellSpeed] of the card.
pub spell_speed_ref: SpellSpeed, #[serde(rename = "spell_speed_ref")]
pub spell_speed: SpellSpeed,
/// Localized rarity of the card.
pub rarity: String,
/// [CardRarity] of the card. /// [CardRarity] of the card.
pub rarity_ref: CardRarity, #[serde(rename = "rarity_ref")]
pub rarity: CardRarity,
/// The subtypes the card has, such as `PORO`. /// The subtypes the card has, such as `PORO`.
pub subtypes: Vec<String>, pub subtypes: Vec<String>,