images: improved full art images in some sets (#13935)

* AKR FULL_ART

* DFT FULL_ART

* FIN FULL_ART

* P08 FULL_ART

* PANA FULL_ART

* PF19 FULL_ART

* PF20 FULL_ART

* PL22 FULL_ART

* PRM FULL_ART

* USG RETRO

* Add UGL_FULL_ART_BASIC to isRetroFrame

* SPM FULL_ART
This commit is contained in:
ReSech 2025-08-30 12:24:52 +10:00 committed by GitHub
parent 82e08b244a
commit 37fb493de1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 69 additions and 72 deletions

View file

@ -145,7 +145,8 @@ public abstract class ExpansionSet implements Serializable {
return this.graphicInfo != null
&& this.graphicInfo.getFrameStyle() != null
&& (this.graphicInfo.getFrameStyle() == FrameStyle.RETRO
|| this.graphicInfo.getFrameStyle() == FrameStyle.LEA_ORIGINAL_DUAL_LAND_ART_BASIC);
|| this.graphicInfo.getFrameStyle() == FrameStyle.LEA_ORIGINAL_DUAL_LAND_ART_BASIC
|| this.graphicInfo.getFrameStyle() == FrameStyle.UGL_FULL_ART_BASIC);
}
}