[M3C] Implement March from Velis Vel

This commit is contained in:
theelk801 2024-04-30 21:02:05 -04:00
parent 82b8eff83b
commit 31c37a4dd3
3 changed files with 105 additions and 0 deletions

View file

@ -684,6 +684,10 @@ public enum SubType {
return subTypeSetMap.get(SubTypeSet.CreatureType);
}
public static Set<SubType> getNonbasicLandTypes() {
return subTypeSetMap.get(SubTypeSet.NonBasicLandType);
}
public static Set<SubType> getBasicLands() {
return subTypeSetMap.get(SubTypeSet.BasicLandType);
}