mirror of
https://github.com/Steffo99/patched-porobot.git
synced 2024-12-22 17:44:22 +00:00
Add CardSet::HeartOfTheHuntress
This commit is contained in:
parent
394397bed3
commit
0a820667b3
1 changed files with 6 additions and 0 deletions
|
@ -40,6 +40,10 @@ pub enum CardSet {
|
|||
#[serde(rename = "Set7")]
|
||||
GloryInNavori,
|
||||
|
||||
/// Heart of the Huntress.
|
||||
#[serde(rename = "Set7b")]
|
||||
HeartOfTheHuntress,
|
||||
|
||||
/// Events, cards released "outside" a set.
|
||||
#[serde(rename = "SetEvent")]
|
||||
Events,
|
||||
|
@ -157,6 +161,8 @@ mod tests {
|
|||
test_deserialization!(deserialize_set5, r#""Set5""#, CardSet::BeyondTheBandlewood);
|
||||
test_deserialization!(deserialize_set6, r#""Set6""#, CardSet::Worldwalker);
|
||||
test_deserialization!(deserialize_set6cde, r#""Set6cde""#, CardSet::TheDarkinSaga);
|
||||
test_deserialization!(deserialize_set7, r#""Set7""#, CardSet::GloryInNavori);
|
||||
test_deserialization!(deserialize_set7b, r#""Set7b""#, CardSet::HeartOfTheHuntress);
|
||||
test_deserialization!(deserialize_setevent, r#""SetEvent""#, CardSet::Events);
|
||||
test_deserialization!(deserialize_fallback, r#""Xyzzy""#, CardSet::Unsupported);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue