MSE 2.5.2 and Showcase Catchup (#18)
* Updated to MSE 2.5.2 * Added Assassin's Creed Memory Corridor * Added Bloomburrow Borderless Anime * Added Bloomburrow Woodland * Added Compleated Planeswalkers * Added Duskmourn Paranormal * Added Kamigawa Neon * Added Kamigawa Ninja * Added Kamigawa Samurai * Added Innistrad Fang * Added Theros Constellation * Added Capenna Art Deco * Added Capenna Golden Age * Added Capenna Skyscraper * Added Doctor Who TARDIS * Added Dominaria Stained Glass * Added Eldraine Enchanting Tales * Added Fallout PipBoy * Added Ikoria Crystal * Added Innistrad Double Feature * Added Innistrad Equinox * Added Ixalan Treasures * Added Ixalan Legends * Added Ixalan Caverns * Added Lord of the Rings Ring * Added Lord of the Rings Scroll * Added Ravnica City Mural * Added Ravnica Dossier * Added Tarkir Dragon Wing * Added Thunder Junction Breaking News * Added Thunder Junction Vault * Added Thunder Junction Wanted Poster * Added Unfinity Of Tomorrow * Added Unfinity Attractions * Added Secret Lair Baseball * Added revamped option to Amonkhet Invocations * Added UB stamp compatibility to old showcase frames * Added foils and popouts modules * Add foil_mask blending system * Fixes #57
This commit is contained in:
@@ -119,8 +119,8 @@ init script:
|
||||
shrink_name2 := {if styling.shrink_name_text != "" then to_int((if comma_count(styling.shrink_name_text) != "" then split_text(match:",", styling.shrink_name_text).1)) else 0 }
|
||||
use_main_rarity := { contains(set.mainframe_rarity_name, match: ".png")}
|
||||
un_png := replace@(match:".png", replace: "")
|
||||
is_vehicle := {contains(card.type, match:"Vehicle")}
|
||||
is_legend := {set.auto_legends and contains(card.super_type, match:"Legendary") }
|
||||
is_vehicle := {lang_setting("is_vehicle")(card.sub_type)}
|
||||
is_legend := {set.auto_legends and lang_setting("is_legendary")(card.super_type) }
|
||||
is_modal_dfc := {
|
||||
styling.dfc_type != "transforming"
|
||||
or contains(card.transformation, match:"modal")
|
||||
@@ -129,8 +129,8 @@ init script:
|
||||
styling.dfc_type == "modal with standard flags"
|
||||
or (styling.dfc_type == "transforming" and contains(card.transformation, match:"modal"))
|
||||
}
|
||||
back_vehicle := {contains(card.type_2, match:"Vehicle")}
|
||||
back_legend := {set.auto_legends and contains(card.super_type_2, match:"Legendary") }
|
||||
back_vehicle := {lang_setting("is_vehicle")(card.sub_type_2)}
|
||||
back_legend := {set.auto_legends and lang_setting("is_legendary")(card.super_type_2) }
|
||||
back_face := replace@(match:"a", replace:"b")
|
||||
card_stamp_offset_top_1 := {1}
|
||||
|
||||
@@ -203,6 +203,8 @@ styling field:
|
||||
name: remove from autocount
|
||||
description: Removes the automatic card number for specific cards, to allow for overcounted cards like in Planeswalker Decks.
|
||||
initial: no
|
||||
include file: /magic-modules.mse-include/stamps/styling_fields
|
||||
|
||||
styling field:
|
||||
type: boolean
|
||||
name: grey hybrid name
|
||||
|
||||
Reference in New Issue
Block a user