tests: added verify checks for missing boosters or draft related sets (related to #13160)

This commit is contained in:
Oleg Agafonov 2025-01-31 23:21:37 +04:00
parent 55a532c9c7
commit 18fd7becdb
2 changed files with 55 additions and 0 deletions

View file

@ -1,5 +1,6 @@
package mage.verify.mtgjson;
import java.util.HashMap;
import java.util.List;
/**
@ -20,6 +21,9 @@ public final class MtgJsonSet {
public String releaseDate;
public int totalSetSize;
// mtgjson contains detailed stats, but verify needs only booster types info
public HashMap<String, Object> booster;
public String block;
public String parentCode;