ps and symbol and printing fixes

This commit is contained in:
cajun
2025-01-06 18:03:32 -06:00
parent ec1478a48e
commit 0be78bce7c
7 changed files with 8 additions and 3 deletions

View File

@@ -1533,6 +1533,10 @@ init script:
} }
flavor_bar_disabled_1 := { mainframe_walker() or a_saga() or not set.use_flavor_bar } flavor_bar_disabled_1 := { mainframe_walker() or a_saga() or not set.use_flavor_bar }
flavor_bar_disabled_2 := { mainframe_walkerb() or b_saga() or not set.use_flavor_bar } flavor_bar_disabled_2 := { mainframe_walkerb() or b_saga() or not set.use_flavor_bar }
name_transform_symbol_shift := {
map := face_coordinates_map(face)
29 * (min(map.width, map.height)/375) + offset
}
watermark_include := "/magic-modules.mse-include/watermarks" watermark_include := "/magic-modules.mse-include/watermarks"
############################################################## Set info fields ############################################################## Set info fields
@@ -1966,7 +1970,7 @@ card style:
mask: { back_frame_mask() } mask: { back_frame_mask() }
############################# Name line ############################# Name line
name: name:
left: { if front_map() then 65 else if front_normal() then 58 else 62 } left: { if front_map() then 65 else if front_normal() then (if card.card_symbol == "none" then 58 else 78) else if card.card_symbol == "none" then 62 else 79 }
top: { if front_map() then 27 else if front_normal() then 30 else 22 } top: { if front_map() then 27 else if front_normal() then 30 else 22 }
right: { (if front_map() then 344 else 339) - card_style.casting_cost.content_width } right: { (if front_map() then 344 else 339) - card_style.casting_cost.content_width }
height: { 23 - (0.5 * shrink_name()) } height: { 23 - (0.5 * shrink_name()) }
@@ -1979,7 +1983,7 @@ card style:
size: { name_font_size() } size: { name_font_size() }
color: { name_font_color() } color: { name_font_color() }
name 2: name 2:
left: { if back_map() then 442 else if back_normal() then 435 else 439 } left: { if back_map() then 442 else if back_normal() then ( if card.card_symbol_2 == "none" then 435 else 455) else if card.card_symbol_2 == "none" then 456 else 439 }
top: { (if back_map() then 27 else if back_normal() then 30 else 22) - 0.5*shrink_name2() } top: { (if back_map() then 27 else if back_normal() then 30 else 22) - 0.5*shrink_name2() }
right: { (if back_map() then 719 else 714) - card_style.casting_cost_2.content_width } right: { (if back_map() then 719 else 714) - card_style.casting_cost_2.content_width }
height: { 23 - (0.5 * shrink_name2()) } height: { 23 - (0.5 * shrink_name2()) }

View File

@@ -539,7 +539,7 @@ card style:
z index: 920 z index: 920
padding top: 0 padding top: 0
card symbol: card symbol:
left: {if card.card_symbol=="none" then 20 else 29} left: {if card.card_symbol=="none" then 20 else 25}
top: 21 top: 21
height: 21 height: 21
width: 23 width: 23

View File

@@ -42,6 +42,7 @@ script:
else if contains(card.shape, match:"battle") then "split" else if contains(card.shape, match:"battle") then "split"
else if contains(card.shape, match:"leveler") then "normal" else if contains(card.shape, match:"leveler") then "normal"
else if contains(card.shape, match:"saga") then "normal" else if contains(card.shape, match:"saga") then "normal"
else if contains(card.shape, match:"class") then "normal"
else if contains(card.shape, match:"adventure") then "vsplit" else if contains(card.shape, match:"adventure") then "vsplit"
else if contains(card.shape, match:"aftermath") then "vsplit" else if contains(card.shape, match:"aftermath") then "vsplit"
else if contains(card.shape, match:"planeswalker") then "normal" else if contains(card.shape, match:"planeswalker") then "normal"

Binary file not shown.

Binary file not shown.

BIN
mse.com

Binary file not shown.

BIN
mse.exe

Binary file not shown.