add wastes support
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
@@ -123,15 +123,28 @@ init script:
|
||||
guild_mana := { styling.use_guild_mana_symbols }
|
||||
ancestral_mana := { styling.use_ancestral_mana_symbols }
|
||||
|
||||
is_land := match@(match: "(?i)Land")
|
||||
is_basic := match@(match: "(?i)Basic")
|
||||
is_plains := match@(match: "(?i)Plains")
|
||||
is_island := match@(match: "(?i)Island")
|
||||
is_swamp := match@(match: "(?i)Swamp")
|
||||
is_mountain := match@(match: "(?i)Mountain")
|
||||
is_forest := match@(match: "(?i)Forest")
|
||||
is_land := lang_setting("is_land")
|
||||
is_basic := lang_setting("is_basic")
|
||||
is_plains := lang_setting("is_plains")
|
||||
is_island := lang_setting("is_island")
|
||||
is_swamp := lang_setting("is_swamp")
|
||||
is_mountain := lang_setting("is_mountain")
|
||||
is_forest := lang_setting("is_forest")
|
||||
is_wastes := lang_setting("is_wastes")
|
||||
|
||||
is_basic_symboled := { styling.basic_land_symbol and is_basic(card.super_type) and is_land(card.super_type) and (is_plains(card.sub_type) or is_island(card.sub_type) or is_swamp(card.sub_type) or is_mountain(card.sub_type) or is_forest(card.sub_type)) }
|
||||
is_basic_symboled := {
|
||||
styling.basic_land_symbol
|
||||
and is_basic(card.super_type)
|
||||
and is_land(card.super_type)
|
||||
and (
|
||||
is_plains(card.sub_type)
|
||||
or is_island(card.sub_type)
|
||||
or is_swamp(card.sub_type)
|
||||
or is_mountain(card.sub_type)
|
||||
or is_forest(card.sub_type)
|
||||
or is_wastes(card.name)
|
||||
)
|
||||
}
|
||||
|
||||
is_promo := { styling.promo }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user