EtchedTemplate
src.templates.normal.EtchedTemplate
Bases: VectorTemplate
Etched template first introduced in Commander Legends. Uses pinline colors for the background, except for Artifact cards. Uses pinline colors for the textbox always. No hollow crown, no companion or nyx layers.
Source code in src\templates\normal.py
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 |
|
Attributes
pinlines_color_map = {None: pinlines_color_map.copy(), 'W': [252, 254, 255], 'Land': [136, 120, 98], 'Artifact': [194, 210, 221], 'Colorless': [194, 210, 221]}
- Colors
Functions
enable_crown() -> None
Enable Legendary Crown shape.
Source code in src\templates\normal.py
640 641 642 |
|
enabled_masks() -> list[Union[dict, list, ArtLayer, LayerSet, None]]
Enable pinlines mask if card is Legendary.
Source code in src\templates\normal.py
631 632 633 634 |
|
enabled_shapes() -> list[Union[ArtLayer, LayerSet, None]]
Enable Legendary pinlines shape if card is Legendary.
Source code in src\templates\normal.py
620 621 622 623 624 625 |
|