LevelerLayout
src.layouts.LevelerLayout
Bases: NormalLayout
Leveler card layout, introduced in Rise of the Eldrazi.
Source code in src\layouts.py
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 |
|
Attributes
card_class: str = LayoutType.Leveler
- Leveler Text
Functions
bottom_level() -> str
Level number(s) requirement of bottom stage, e.g. 5+.
Source code in src\layouts.py
1086 1087 1088 1089 |
|
bottom_power_toughness() -> str
Creature Power/Toughness applied at bottom stage.
Source code in src\layouts.py
1091 1092 1093 1094 |
|
bottom_text() -> str
Rules text applied at bottom stage.
Source code in src\layouts.py
1096 1097 1098 1099 |
|
level_up_text() -> str
Main text that defines the 'Level up' cost.
Source code in src\layouts.py
1066 1067 1068 1069 |
|
leveler_match() -> Optional[Match[str]]
Unpack leveler text fields from oracle text string.
Source code in src\layouts.py
1061 1062 1063 1064 |
|
middle_level() -> str
Level number(s) requirement of middle stage, e.g. 1-2.
Source code in src\layouts.py
1071 1072 1073 1074 |
|
middle_power_toughness() -> str
Creature Power/Toughness applied at middle stage.
Source code in src\layouts.py
1076 1077 1078 1079 |
|
middle_text() -> str
Rules text applied at middle stage.
Source code in src\layouts.py
1081 1082 1083 1084 |
|