Skip to content

BasicLandTherosTemplate

src.templates.basic_land.BasicLandTherosTemplate

Bases: FullartMod, BaseTemplate

Fullart basic land template introduced in Theros: Beyond Death.

Source code in src\templates\basic_land.py
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
class BasicLandTherosTemplate (FullartMod, BaseTemplate):
    """Fullart basic land template introduced in Theros: Beyond Death."""
    template_suffix = 'Theros'

    """
    * Layer Groups
    """

    @auto_prop_cached
    def text_group(self) -> Optional[LayerSet]:
        """Text layers are in the document root."""
        return self.docref

    """
    * Frame Layer Methods
    """

    def enable_frame_layers(self):
        """Only one layer, named according to basic land name."""
        psd.getLayer(self.layout.name_raw).visible = True

Attributes

template_suffix = 'Theros'

  • Layer Groups

Functions

enable_frame_layers()

Only one layer, named according to basic land name.

Source code in src\templates\basic_land.py
68
69
70
def enable_frame_layers(self):
    """Only one layer, named according to basic land name."""
    psd.getLayer(self.layout.name_raw).visible = True

text_group() -> Optional[LayerSet]

Text layers are in the document root.

Source code in src\templates\basic_land.py
59
60
61
62
@auto_prop_cached
def text_group(self) -> Optional[LayerSet]:
    """Text layers are in the document root."""
    return self.docref