58 lines
2.5 KiB
Plaintext
58 lines
2.5 KiB
Plaintext
choice images:
|
|
# Images based on the set symbol
|
|
basic land:
|
|
script:
|
|
if use_main_rarity() then mainframe_rarity("c")
|
|
else if use_alt_rarity() then alt_symbol()
|
|
else if styling.inverted_common_symbol or else false or set.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
|
|
else symbol_variation(symbol: set.symbol, variation: "common")
|
|
common:
|
|
script:
|
|
if use_main_rarity() then mainframe_rarity("c")
|
|
else if use_alt_rarity() then alt_symbol()
|
|
else if styling.inverted_common_symbol or else false or set.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
|
|
else symbol_variation(symbol: set.symbol, variation: "common")
|
|
uncommon:
|
|
script:
|
|
if not styling.colored_rarities or else false then (
|
|
if use_main_rarity() then mainframe_rarity("c")
|
|
else symbol_variation(symbol: set.symbol, variation: "common")
|
|
)
|
|
else if use_main_rarity() then mainframe_rarity("u")
|
|
else if use_alt_rarity() then alt_symbol()
|
|
else symbol_variation(symbol: set.symbol, variation: "olduncommon")
|
|
rare:
|
|
script:
|
|
if not styling.colored_rarities or else false then (
|
|
if use_main_rarity() then mainframe_rarity("c")
|
|
else symbol_variation(symbol: set.symbol, variation: "common")
|
|
)
|
|
else if use_main_rarity() then mainframe_rarity("r")
|
|
else if use_alt_rarity() then alt_symbol()
|
|
else symbol_variation(symbol: set.symbol, variation: "oldrare")
|
|
mythic rare:
|
|
script:
|
|
if not styling.colored_rarities or else false then (
|
|
if use_main_rarity() then mainframe_rarity("c")
|
|
else symbol_variation(symbol: set.symbol, variation: "common")
|
|
)
|
|
else if use_main_rarity() then mainframe_rarity("m")
|
|
else if use_alt_rarity() then alt_symbol()
|
|
else symbol_variation(symbol: set.symbol, variation: "mythic rare")
|
|
special:
|
|
script:
|
|
if not styling.colored_rarities or else false then (
|
|
if use_main_rarity() then mainframe_rarity("c")
|
|
else symbol_variation(symbol: set.symbol, variation: "common")
|
|
)
|
|
else if use_main_rarity() then mainframe_rarity("s")
|
|
else if use_alt_rarity() then alt_symbol()
|
|
else symbol_variation(symbol: set.symbol, variation: "special")
|
|
masterpiece:
|
|
script:
|
|
if not styling.colored_rarities or else false then (
|
|
symbol_variation(symbol: set.masterpiece_symbol, variation: "common")
|
|
)
|
|
else if use_main_rarity() then mainframe_rarity("mp")
|
|
else symbol_variation(symbol: set.masterpiece_symbol, variation: "mythic rare")
|
|
|