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:
428
data/magic-m15-showcase-ravnica-dossier.mse-style/style
Normal file
428
data/magic-m15-showcase-ravnica-dossier.mse-style/style
Normal file
@@ -0,0 +1,428 @@
|
||||
mse version: 2.1.2
|
||||
game: magic
|
||||
short name: Dossier
|
||||
full name: Ravnica Showcase
|
||||
icon: card_sample.png
|
||||
position hint: 095
|
||||
|
||||
version: 2024-05-20
|
||||
depends on:
|
||||
package: magic.mse-game
|
||||
version: 2014-06-25
|
||||
depends on:
|
||||
package: magic-mana-large.mse-symbol-font
|
||||
version: 2007-09-23
|
||||
depends on:
|
||||
package: magic-mana-small.mse-symbol-font
|
||||
version: 2007-09-23
|
||||
depends on:
|
||||
package: magic-mana-ravnica-dossier.mse-symbol-font
|
||||
version: 2024-01-24
|
||||
depends on:
|
||||
package: magic-modules.mse-include
|
||||
version: 2024-05-20
|
||||
depends on:
|
||||
package: magic-mainframe-extras.mse-include
|
||||
version: 2007-09-23
|
||||
|
||||
card width: 744
|
||||
card height: 1039
|
||||
card dpi: 297
|
||||
|
||||
### blanks by GenevensiS
|
||||
### code by GenevensiS
|
||||
|
||||
############################################################## Extra scripts
|
||||
|
||||
init script:
|
||||
swap_fonts_pt_default :=
|
||||
[
|
||||
name: {"Beleren Bold"},
|
||||
size: {30.0},
|
||||
color: {"black"},
|
||||
vertical: {0},
|
||||
italic: {"Beleren Bold"}
|
||||
]
|
||||
|
||||
swap_fonts_body_default :=
|
||||
[
|
||||
name: {"Secretary Typewriter"},
|
||||
size: {24.0},
|
||||
color: {"black"},
|
||||
vertical: {0},
|
||||
italic: {"Secretary Typewriter"}
|
||||
]
|
||||
|
||||
swap_fonts_type_default :=
|
||||
[
|
||||
name: {"Beleren Bold"},
|
||||
size: {25.0},
|
||||
color: { "black" },
|
||||
vertical: {0},
|
||||
italic: {""}
|
||||
]
|
||||
|
||||
swap_fonts_name_default :=
|
||||
[
|
||||
name: {"Beleren Bold"},
|
||||
size: {29.5},
|
||||
color: { "black" },
|
||||
vertical: {0},
|
||||
italic: {""}
|
||||
]
|
||||
|
||||
template_prefix :=
|
||||
[
|
||||
card: "card/",
|
||||
crown: "crown/",
|
||||
identity: "/magic-modules.mse-include/indicators/"
|
||||
]
|
||||
template_suffix :=
|
||||
[
|
||||
card: "card.png",
|
||||
crown: "crown.png",
|
||||
identity: "identity.png"
|
||||
]
|
||||
template := { template_prefix[type] + input + template_suffix[type] }
|
||||
land_template := { template_prefix[type] + (if input == "a" then "c" else input) + template_suffix[type] }
|
||||
|
||||
card_background := { color_background(input: card.card_color, type: "card", base_hybrid: card_hybrid)}@(offset: 0)
|
||||
card_crown := { color_background(input: card.card_color, type: "crown", base_hybrid: card_hybrid)}@(offset: 0)
|
||||
|
||||
has_identity := { styling.color_indicator_dot }
|
||||
has_identity_2 := { false }
|
||||
|
||||
is_promo := { styling.promo }
|
||||
|
||||
is_unsorted := { styling.remove_from_autocount }
|
||||
|
||||
is_crowned := { styling.legend_crown == "yes" or (styling.legend_crown == "if legendary" and lang_setting("is_legendary")(card.super_type)) }
|
||||
|
||||
chop_top := { split := split_comma(styling.chop_text_box); if length(split) > 0 and split.0 != "" then clamp(split.0, maximum: 1500, minimum: -1500) else 0 }
|
||||
chop_bot := { split := split_comma(styling.chop_text_box); if length(split) > 1 and split.1 != "" then clamp(split.1, maximum: 1500, minimum: -1500) else 0 }
|
||||
|
||||
popout_left := { split := split_comma(styling.popout_image_coordinates); if length(split) > 3 and split.0 != "" then clamp(split.0, maximum: 1500, minimum: -500) else 0 }
|
||||
popout_top := { split := split_comma(styling.popout_image_coordinates); if length(split) > 3 and split.1 != "" then clamp(split.1, maximum: 2000, minimum: -500) else 0 }
|
||||
popout_width := { split := split_comma(styling.popout_image_coordinates); if length(split) > 3 and split.2 != "" then clamp(split.2, maximum: 1500, minimum: 0) else 0 }
|
||||
popout_height := { split := split_comma(styling.popout_image_coordinates); if length(split) > 3 and split.3 != "" then clamp(split.3, maximum: 2000, minimum: 0) else 0 }
|
||||
|
||||
rarity_right := { split := split_comma(styling.rarity_offsets); (if length(split) > 0 and split.0 != "" then clamp(split.0, minimum: -500, maximum: 500) else 0) + 684 }
|
||||
rarity_top := { split := split_comma(styling.rarity_offsets); (if length(split) > 1 and split.1 != "" then clamp(split.1, minimum: -500, maximum: 500) else 0) + 587 }
|
||||
rarity_size := { split := split_comma(styling.rarity_offsets); (if length(split) > 2 and split.2 != "" then clamp(split.2, minimum: -52, maximum: 100) else 0) + 52 }
|
||||
rarity_left := { rarity_right() - rarity_size() }
|
||||
|
||||
############################################################## Extra style options
|
||||
|
||||
styling field:
|
||||
type: text
|
||||
name: popout image coordinates
|
||||
description: The coordinates for the popout image field, formatted as "left,top,width,height". Used to make the illustration jump in front of the frame.
|
||||
styling field:
|
||||
type: boolean
|
||||
name: stretch image to whole card
|
||||
description: Make the image span the whole card instead of just the visible part. Use this to help make popout effects.
|
||||
initial: no
|
||||
|
||||
include file: /magic-modules.mse-include/texts/styling_fields
|
||||
|
||||
styling field:
|
||||
type: choice
|
||||
name: legend crown
|
||||
description: Use the legend crown?
|
||||
choice: yes
|
||||
choice: if legendary
|
||||
choice: no
|
||||
initial: if legendary
|
||||
|
||||
include file: /magic-modules.mse-include/stamps/styling_fields
|
||||
|
||||
include file: /magic-modules.mse-include/rarities/styling_fields
|
||||
|
||||
include file: /magic-modules.mse-include/indicators/styling_fields
|
||||
|
||||
include file: /magic-modules.mse-include/watermarks/styling_fields
|
||||
|
||||
styling field:
|
||||
type: package choice
|
||||
name: overlay
|
||||
description: Should there be an overlay applied, such as foil?
|
||||
match: magic-overlay-*.mse-include
|
||||
required: false
|
||||
|
||||
include file: /magic-modules.mse-include/information/styling_fields
|
||||
|
||||
styling field:
|
||||
type: package choice
|
||||
name: casting cost mana symbols
|
||||
description: Mana symbols used for casting cost, name, banner, fuse and transformation reminder.
|
||||
match: magic-mana-*.mse-symbol-font
|
||||
initial: magic-mana-ravnica-dossier.mse-symbol-font
|
||||
styling field:
|
||||
type: package choice
|
||||
name: text box mana symbols
|
||||
description: Mana symbols used inside rule text.
|
||||
match: magic-mana-*.mse-symbol-font
|
||||
initial: magic-mana-small.mse-symbol-font
|
||||
styling field:
|
||||
type: boolean
|
||||
name: use ancestral mana symbols
|
||||
description: Enables ancestral's modified generic mana.
|
||||
initial: no
|
||||
styling field:
|
||||
type: boolean
|
||||
name: use guild mana symbols
|
||||
description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
|
||||
initial: no
|
||||
styling field:
|
||||
type: choice
|
||||
name: tap symbol
|
||||
description: What tap and untap symbols should be used on cards?
|
||||
choice: modern
|
||||
choice: old
|
||||
choice: diagonal T
|
||||
initial: modern
|
||||
styling style:
|
||||
use ancestral mana symbols:
|
||||
choice images:
|
||||
yes: /magic-modules.mse-include/symbol-fonts/generic_ancestral.png
|
||||
no: /magic-modules.mse-include/symbol-fonts/generic_normal.png
|
||||
use guild mana symbols:
|
||||
choice images:
|
||||
yes: /magic-modules.mse-include/symbol-fonts/hybrid_guild.png
|
||||
no: /magic-modules.mse-include/symbol-fonts/hybrid_normal.png
|
||||
tap symbol:
|
||||
render style: both
|
||||
choice images:
|
||||
modern: /magic-modules.mse-include/symbol-fonts/tap_new.png
|
||||
old: /magic-modules.mse-include/symbol-fonts/tap_old.png
|
||||
diagonal T: /magic-modules.mse-include/symbol-fonts/tap_older.png
|
||||
|
||||
include file: /magic-modules.mse-include/fonts/styling_fields
|
||||
|
||||
############################################################## Card fields
|
||||
|
||||
include file: /magic-modules.mse-include/information/card_fields
|
||||
|
||||
include file: /magic-modules.mse-include/stamps/card_fields
|
||||
|
||||
include file: /magic-modules.mse-include/corners/card_fields
|
||||
|
||||
include file: /magic-modules.mse-include/watermarks/card_fields
|
||||
|
||||
include file: /magic-modules.mse-include/separators/card_fields
|
||||
|
||||
include file: /magic-modules.mse-include/foils/card_fields
|
||||
|
||||
card style:
|
||||
############################# Background stuff
|
||||
border color:
|
||||
left: 0
|
||||
top: 0
|
||||
width: { stylesheet.card_width }
|
||||
height: { stylesheet.card_height }
|
||||
z index: 100
|
||||
mask: border_mask.png
|
||||
card color:
|
||||
left: 0
|
||||
top: 0
|
||||
width: { stylesheet.card_width }
|
||||
height: { stylesheet.card_height }
|
||||
z index: 210
|
||||
popup style: in place
|
||||
render style: image
|
||||
image: { card_background() }
|
||||
mask: { if is_crowned() then "card_crown_mask.png" else "card_mask.png" }
|
||||
############################# Name line
|
||||
name:
|
||||
left: 63
|
||||
top: { 47 + name_font_vertical() }
|
||||
right: { 665 - (if card_style.casting_cost.content_width == 0 then 0 else card_style.casting_cost.content_width + 7) }
|
||||
height: 51
|
||||
angle: -1
|
||||
z index: 1000
|
||||
alignment: middle left shrink-overflow
|
||||
font:
|
||||
name: { name_font() }
|
||||
italic name: { name_font_italic() }
|
||||
size: { name_font_size() }
|
||||
scale down to: 8
|
||||
color: { name_font_color() }
|
||||
casting cost:
|
||||
right: 668
|
||||
top: 64
|
||||
width: 200
|
||||
height: 52
|
||||
angle: -1
|
||||
z index: 1010
|
||||
alignment: middle right
|
||||
always symbol: true
|
||||
font:
|
||||
name: MPlantin
|
||||
size: 30
|
||||
color: white
|
||||
symbol font:
|
||||
name: { styling.casting_cost_mana_symbols }
|
||||
size: 30
|
||||
############################# Image
|
||||
image:
|
||||
left: { if styling.stretch_image_to_whole_card then 0 else 38 }
|
||||
top: { if styling.stretch_image_to_whole_card then 0 else 134 }
|
||||
width: { if styling.stretch_image_to_whole_card then stylesheet.card_width else 654 }
|
||||
height: { if styling.stretch_image_to_whole_card then stylesheet.card_height else 425 }
|
||||
z index: 0
|
||||
mainframe image:
|
||||
left: { popout_left() }
|
||||
top: { popout_top() }
|
||||
width: { popout_width() }
|
||||
height: { popout_height() }
|
||||
z index: 1010
|
||||
############################# Card type
|
||||
indicator:
|
||||
left: 58
|
||||
top: 603
|
||||
width: 32
|
||||
height: 32
|
||||
angle: 0.65
|
||||
z index: 1000
|
||||
render style: image
|
||||
visible: { has_identity() }
|
||||
image: { module_identity() }
|
||||
type:
|
||||
left: { if has_identity() then 100 else 63 }
|
||||
top: { 588 + type_font_vertical() }
|
||||
right: { if set.shorten_types_for_rarity then clamp(rarity_left()-5, minimum: 375, maximum: 682) else 682 }
|
||||
height: 54
|
||||
angle: 0.65
|
||||
z index: 1000
|
||||
alignment: middle left shrink-overflow
|
||||
font:
|
||||
name: { type_font() }
|
||||
italic name: { type_font_italic() }
|
||||
size: { type_font_size() }
|
||||
scale down to: 8
|
||||
color: { type_font_color() }
|
||||
separator color: red
|
||||
rarity:
|
||||
right: { rarity_right() }
|
||||
top: { rarity_top() }
|
||||
width: { rarity_size() }
|
||||
height: { rarity_size() }
|
||||
angle: 0.65
|
||||
z index: 1010
|
||||
alignment: middle right
|
||||
render style: image
|
||||
include file: /magic-modules.mse-include/rarities/choice_images
|
||||
############################# Text box
|
||||
text:
|
||||
left: 65
|
||||
top: { 653 + chop_top() + body_font_vertical() }
|
||||
right: 677
|
||||
bottom: { 943 - chop_bot() }
|
||||
z index: 900
|
||||
line height hard: { if is_modal(card.rule_text) then 0.9 else 1.2 }
|
||||
line height line: 1.5
|
||||
line height soft: 0.9
|
||||
line height hard max: { if is_modal(card.rule_text) then 1.0 else 1.3 }
|
||||
line height line max: 1.6
|
||||
alignment:
|
||||
script:
|
||||
if (styling.center_text == "short text only" and
|
||||
not contains(match:"\n", card.rule_text) and
|
||||
card.flavor_text == "<i-flavor></i-flavor>" and
|
||||
card_style.text.content_lines <= 2) or
|
||||
styling.center_text == "always"
|
||||
then "middle center"
|
||||
else "middle left"
|
||||
font:
|
||||
name: { body_font() }
|
||||
italic name: { body_font_italic() }
|
||||
size: { body_font_size() }
|
||||
scale down to: 12
|
||||
color: { body_font_color() }
|
||||
weight: bold
|
||||
symbol font:
|
||||
name: { styling.text_box_mana_symbols }
|
||||
size: { body_font_size() }
|
||||
scale down to: 12
|
||||
############################# PT
|
||||
pt:
|
||||
left: 594
|
||||
top: { 927 + pt_font_vertical() }
|
||||
width: 91
|
||||
height: 46
|
||||
angle: 2.8
|
||||
z index: 900
|
||||
alignment: center middle shrink-overflow
|
||||
font:
|
||||
name: { pt_font() }
|
||||
size: { pt_font_size() }
|
||||
color: { pt_font_color() }
|
||||
separator color: red
|
||||
|
||||
############################################################## Extra card fields
|
||||
|
||||
extra card field:
|
||||
type: choice
|
||||
name: crown
|
||||
script: card.card_color
|
||||
editable: false
|
||||
save value: false
|
||||
show statistics: false
|
||||
extra card field:
|
||||
type: choice
|
||||
name: pt box
|
||||
editable: false
|
||||
save value: false
|
||||
show statistics: false
|
||||
choice: pt box
|
||||
extra card field:
|
||||
type: choice
|
||||
name: card stamp rim
|
||||
editable: false
|
||||
save value: false
|
||||
show statistics: false
|
||||
choice: card stamp rim
|
||||
extra card field:
|
||||
type: color
|
||||
name: card stamp border
|
||||
script: card.border_color
|
||||
editable: false
|
||||
save value: false
|
||||
show statistics: false
|
||||
|
||||
extra card style:
|
||||
crown:
|
||||
left: 0
|
||||
top: 0
|
||||
width: { stylesheet.card_width }
|
||||
height: { stylesheet.card_height }
|
||||
z index: 310
|
||||
visible: { is_crowned() }
|
||||
render style: image
|
||||
image: { card_crown() }
|
||||
pt box:
|
||||
left: 0
|
||||
top: 0
|
||||
width: { stylesheet.card_width }
|
||||
height: { stylesheet.card_height }
|
||||
z index: 810
|
||||
visible: { card.pt != "" }
|
||||
render style: image
|
||||
image: pt.png
|
||||
card stamp rim:
|
||||
left: 0
|
||||
top: 0
|
||||
width: { stylesheet.card_width }
|
||||
height: { stylesheet.card_height }
|
||||
z index: 610
|
||||
visible: { stamp_shape() == "round" }
|
||||
render style: image
|
||||
image: stamp_rim.png
|
||||
card stamp border:
|
||||
left: 0
|
||||
top: 0
|
||||
width: { stylesheet.card_width }
|
||||
height: { stylesheet.card_height }
|
||||
z index: 600
|
||||
visible: { is_stamped() }
|
||||
mask: {"border_stamp" + (if stamp_shape() == "triangle" then "_tri" else "") + "_mask.png"}
|
||||
Reference in New Issue
Block a user