mirror of
https://github.com/Steffo99/patched-porobot.git
synced 2024-12-23 10:04:21 +00:00
Add CardSet::FatesVoyage
This commit is contained in:
parent
9de0b24931
commit
0aee8e76dc
1 changed files with 5 additions and 0 deletions
|
@ -44,6 +44,10 @@ pub enum CardSet {
|
||||||
#[serde(rename = "Set7b")]
|
#[serde(rename = "Set7b")]
|
||||||
HeartOfTheHuntress,
|
HeartOfTheHuntress,
|
||||||
|
|
||||||
|
/// Fate's Voyage.
|
||||||
|
#[serde(rename = "Set8")]
|
||||||
|
FatesVoyage,
|
||||||
|
|
||||||
/// Events, cards released "outside" a set.
|
/// Events, cards released "outside" a set.
|
||||||
#[serde(rename = "SetEvent")]
|
#[serde(rename = "SetEvent")]
|
||||||
Events,
|
Events,
|
||||||
|
@ -163,6 +167,7 @@ mod tests {
|
||||||
test_deserialization!(deserialize_set6cde, r#""Set6cde""#, CardSet::TheDarkinSaga);
|
test_deserialization!(deserialize_set6cde, r#""Set6cde""#, CardSet::TheDarkinSaga);
|
||||||
test_deserialization!(deserialize_set7, r#""Set7""#, CardSet::GloryInNavori);
|
test_deserialization!(deserialize_set7, r#""Set7""#, CardSet::GloryInNavori);
|
||||||
test_deserialization!(deserialize_set7b, r#""Set7b""#, CardSet::HeartOfTheHuntress);
|
test_deserialization!(deserialize_set7b, r#""Set7b""#, CardSet::HeartOfTheHuntress);
|
||||||
|
test_deserialization!(deserialize_set8, r#""Set8""#, CardSet::FatesVoyage);
|
||||||
test_deserialization!(deserialize_setevent, r#""SetEvent""#, CardSet::Events);
|
test_deserialization!(deserialize_setevent, r#""SetEvent""#, CardSet::Events);
|
||||||
test_deserialization!(deserialize_fallback, r#""Xyzzy""#, CardSet::Unsupported);
|
test_deserialization!(deserialize_fallback, r#""Xyzzy""#, CardSet::Unsupported);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue