Tests: migrating to mtgjson v5 (#6808);

This commit is contained in:
Oleg Agafonov 2020-08-15 14:21:38 +04:00
parent e1806f808c
commit ca254c6562
6 changed files with 171 additions and 154 deletions

View file

@ -0,0 +1,15 @@
package mage.verify.mtgjson;
import java.util.List;
public final class MtgJsonSet {
// v5 support
// https://mtgjson.com/data-models/card-atomic/
// contains only used fields, if you need more for tests then just add it here
public List<MtgJsonCard> cards;
public String code;
public String name;
public String releaseDate;
public int totalSetSize;
}