1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-12-22 17:44:22 +00:00

Somehow, I've managed to forget about bilgewater

This commit is contained in:
Steffo 2022-08-13 05:30:45 +00:00 committed by GitHub
parent 5d51c55c9c
commit ce0774d5dd
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,6 +20,8 @@ pub enum CardRegion {
Targon,
/// Ionia.
Ionia,
/// Bilgewater.
Bilgewater,
/// Shurima.
Shurima,
/// Piltover & Zaun.
@ -74,6 +76,7 @@ mod tests {
test_deserialization!(deserialize_shadowisles, r#""ShadowIsles""#, CardRegion::ShadowIsles);
test_deserialization!(deserialize_targon, r#""Targon""#, CardRegion::Targon);
test_deserialization!(deserialize_ionia, r#""Ionia""#, CardRegion::Ionia);
test_deserialization!(deserialize_bandlecity, r#""Bilgewater""#, CardRegion::Bilgewater);
test_deserialization!(deserialize_shurima, r#""Shurima""#, CardRegion::Shurima);
test_deserialization!(deserialize_piltoverzaun, r#""PiltoverZaun""#, CardRegion::PiltoverZaun);
test_deserialization!(deserialize_bandlecity, r#""BandleCity""#, CardRegion::BandleCity);