Feature: Retro Border Renderer (#13563)

* Add Retro Card Renderer

* Updated old sets with retro frames

Adds sets:
* 30th Anniversary Play Promos
* 30th Anniversary Misc Promos
* Eternal Weekend
* MagicFest 2025
* Modern Horizon 2 Timeshifts
This commit is contained in:
Jmlundeen 2025-04-22 17:37:57 -05:00 committed by GitHub
parent 36196742ad
commit e34ebe740e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
151 changed files with 16549 additions and 14836 deletions

View file

@ -641,6 +641,11 @@ public class CardView extends SimpleCardView {
artRect = ArtRect.FULL_LENGTH_RIGHT;
}
// Retro border cards need different art cutout
if (card.getFrameStyle() == FrameStyle.RETRO) {
this.artRect = ArtRect.RETRO;
}
// Frame color
this.frameColor = card.getFrameColor(game).copy();