diff --git a/data/magic-m15-altered.mse-style/style b/data/magic-m15-altered.mse-style/style index 2378b5aed..fe95343d2 100644 --- a/data/magic-m15-altered.mse-style/style +++ b/data/magic-m15-altered.mse-style/style @@ -967,6 +967,7 @@ styling field: type: text name: custom symbol description: Uses a custom Lesson symbol from data/magic-mainframe-extras.mse-include + script: verify_symbol_image(value) styling field: type: text name: card watermark diff --git a/data/magic-m15-mainframe-dfc.mse-style/style b/data/magic-m15-mainframe-dfc.mse-style/style index 32b446530..6ae8c64f2 100644 --- a/data/magic-m15-mainframe-dfc.mse-style/style +++ b/data/magic-m15-mainframe-dfc.mse-style/style @@ -1704,10 +1704,12 @@ styling field: type: text name: custom symbol one description: Uses a custom DFC symbol from data/magic-mainframe-extras.mse-include + script: verify_symbol_image(value) styling field: type: text name: custom symbol two description: Uses a custom DFC symbol from data/magic-mainframe-extras.mse-include + script: verify_symbol_image(value) styling field: type: text name: card watermark diff --git a/data/magic-m15-meld-3in1.mse-style/style b/data/magic-m15-meld-3in1.mse-style/style index 1ea25bf16..ac83dc224 100644 --- a/data/magic-m15-meld-3in1.mse-style/style +++ b/data/magic-m15-meld-3in1.mse-style/style @@ -833,4 +833,4 @@ extra card style: z index: 840 visible: { card.pt_3 != "" } render style: image - image: pt.png + image: { template_prefix["pt"] + "cpt.png" } diff --git a/data/magic-modules.mse-include/stamps/backs/375 ub/pw/artifact_blend_stamp.png b/data/magic-modules.mse-include/stamps/backs/375 ub/pw/artifact_blend_stamp.png new file mode 100644 index 000000000..fe54ebab9 Binary files /dev/null and b/data/magic-modules.mse-include/stamps/backs/375 ub/pw/artifact_blend_stamp.png differ diff --git a/data/magic-modules.mse-include/stamps/backs/375 ub/pw/hybrid_blend_stamp.png b/data/magic-modules.mse-include/stamps/backs/375 ub/pw/hybrid_blend_stamp.png new file mode 100644 index 000000000..fe54ebab9 Binary files /dev/null and b/data/magic-modules.mse-include/stamps/backs/375 ub/pw/hybrid_blend_stamp.png differ diff --git a/data/magic-modules.mse-include/stamps/backs/375 ub/pw/multicolor_blend_stamp.png b/data/magic-modules.mse-include/stamps/backs/375 ub/pw/multicolor_blend_stamp.png new file mode 100644 index 000000000..fe54ebab9 Binary files /dev/null and b/data/magic-modules.mse-include/stamps/backs/375 ub/pw/multicolor_blend_stamp.png differ diff --git a/data/magic.mse-game/script b/data/magic.mse-game/script index 90c40cc5c..822f9b2fd 100644 --- a/data/magic.mse-game/script +++ b/data/magic.mse-game/script @@ -33,7 +33,7 @@ include file: language include file: statistics_script include file: /magic-blends.mse-include/new-blends ############################################################## Versioning -version_date := {"2024-10-01 Template Pack 3.0.4: Magic Modules & Showcase Catchup - Custom Symbol padding"} +version_date := {"2024-10-01 Template Pack 3.0.5: Magic Modules & Showcase Catchup - UBWalker fix"} version := version_date ############################################################## Common filters ############################################################## Utility @@ -4491,11 +4491,11 @@ verify_symbol_image := { custom_symbol_image := { src := if style_src != "" then style_src else set["custom_symbol_"+input] array := split_comma(src) - if not has_png(array.0) or array.1 == "Not found" + if not has_png(array.0) or (array.1 or else "" == "Not found") then "/magic-modules.mse-include/symbols/aetherprint.png" else ( link := "/magic-mainframe-extras.mse-include/" + array.0 - if array.3 == "+" then link := enlarge(link, border_size:0.189) + if array.3 or else "" == "+" then link := enlarge(link, border_size:0.189) link ) }@(style_src:"")