add wastes support

This commit is contained in:
cajun
2025-01-11 20:40:41 -06:00
parent 878d8e4203
commit 9fe161edaa
2 changed files with 21 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -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 }