Synchronize with Cajun-Style-Templates

Add in VerumCH's borderless updates
Add in inverted d20 support
Add in Dungeons
Add in Adventure Planeswalkers
This commit is contained in:
CajunAvenger
2023-02-12 19:03:39 -06:00
parent ad9f364f01
commit 635dc3b5e5
217 changed files with 2532 additions and 149 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 768 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -28,6 +28,9 @@ depends on:
depends on:
package: magic-mainframe-extras.mse-include
version: 2018-01-01
depends on:
package: magic-m15-mainframe-assets.mse-include
version: 2022-06-24
depends on:
package: magic-pride.mse-include
version: 2021-05-26
@@ -72,6 +75,8 @@ init script:
}
crown_follow := {
if input != "crown" then ""
else if is_borderless()
then "bl"
else if styling.legend_crown == "nyx" or (is_nyx() and chosen(styling.other_options, choice:"auto nyx crowns"))
then "nyx"
else if styling.legend_crown == "companion"
@@ -159,10 +164,10 @@ init script:
is_d20 := {styling.d20_dividers != "off" and not is_leveler()}
is_all_break := {contains(styling.d20_dividers, match:"all breaks")}
d20string := "^(<b>)?(((</sym>)?[-0-9 ,+>\<](<sym>)?)+|[Ee]lse|[Oo]ther) ?(</b>)?[|]"
d20_array :=
d20_array :=
filter_text@(match:"(\n|"+d20string+")")
+split_text@(match:d20string)
number_of_rolls := {if is_all_break() then 1+length(filter_text(card.rule_text, match:"\n"))-rolls_start(card.text) else length(d20_array(input))-1}
number_of_rolls := {min(6, if is_all_break() then 1+length(filter_text(card.rule_text, match:"\n"))-(rolls_start(card.text)-invert_rolls()) else length(d20_array(input))-1)}
rolls_start := {
if styling.d20_dividers == "all breaks +3" then 4
else if styling.d20_dividers == "all breaks +2" then 3
@@ -174,18 +179,23 @@ init script:
d20_filter := replace@(match:"^([Ee]lse ?|[Oo]ther ?|((</sym>)?[-0-9 ,+>\<](<sym>)?)+)[|]", replace:"<b>\\1</b>|")
top_of_para := {
input := input + no_roll(card.text)
if card_style.text.layout.paragraphs[input].top or else 0 > 0 then
card_style.text.top + card_style.text.layout.paragraphs[input].top - 0.5*(card_style.text.layout.paragraphs[input].top-card_style.text.layout.paragraphs[input-1].bottom)
input := max(input, 0)
if card_style.text.layout.paragraphs[input].top or else -1 >= 0 then
if invert_rolls() == 1 and input == rolls_start()-invert_rolls() then card_style.text.top
else if input == 0 then card_style.text.top + card_style.text.layout.paragraphs[input].top
else card_style.text.top + card_style.text.layout.paragraphs[input].top - 0.5*(card_style.text.layout.paragraphs[input].top-card_style.text.layout.paragraphs[input-1].bottom)
else 0
}
height_of_para := {
input := input + no_roll(card.text)
if card_style.text.layout.paragraphs[input].bottom or else 0 > 0 then
card_style.text.layout.paragraphs[input].bottom + 1.3*(card_style.text.layout.paragraphs[input].top-card_style.text.layout.paragraphs[input-1].bottom) - card_style.text.layout.paragraphs[input].top
if invert_rolls() == 1 and input == rolls_start() then card_style.text.layout.paragraphs[input-1].bottom
else card_style.text.layout.paragraphs[input].bottom + 1.3*(card_style.text.layout.paragraphs[input].top-card_style.text.layout.paragraphs[input-1].bottom) - card_style.text.layout.paragraphs[input].top
else 0
}
no_roll := {if styling.d20_dividers == "all breaks" then 1 else if rolls_start(input) == 0 then 1 else 0}
invert_rolls := {if chosen(styling.other_options, choice:"inverted d20") then 1 else 0}
text_filter := text_filter + override_clear + d20_filter + {if chosen(styling.other_options, choice:"override-style text") then override_filter(input) else input}
center_map := {is_map() and (card.casting_cost == "" or chosen(styling.other_options, choice:"always center map names"))}
@@ -205,7 +215,7 @@ init script:
then output := split_text(string+"0,0,0:0,0,0:0.07:", match:",|:")
else if colons == 1
then output := split_text(string+splits[0]+":0,0,0:0,0,0:0.07:", match:",|:")
output
}
alt_symbol := {symbol_variation(symbol:set.symbol, border_radius: alt_rarity_color().12, fill_type: "linear gradient", fill_color_1: rgb(alt_rarity_color().0, alt_rarity_color().1, alt_rarity_color().2), fill_color_2: rgb(alt_rarity_color().3, alt_rarity_color().4, alt_rarity_color().5), border_color_1: rgb(alt_rarity_color().6, alt_rarity_color().7, alt_rarity_color().8), border_color_2: rgb(alt_rarity_color().9, alt_rarity_color().10, alt_rarity_color().11), center_x:0.5, center_y:0.5, end_x:1, end_y:1)}
@@ -265,6 +275,10 @@ init script:
}
shown_cr := {if set.automatic_copyright then set.copyright != "" else card.copyright != ""}
card_shape := {if is_leveler() then "leveler" else "normal"}
white_text := {is_full_art() or is_fnm() or is_inverted()}
use_flash_dot := {false}
############################################################## Set info fields
set info style:
symbol:
@@ -364,6 +378,7 @@ styling field:
choice: clear tops
choice: vorthos box
choice: pride pinlines
choice: inverted d20
initial: auto nyx crowns, auto vehicles, auto snow
styling field:
type: text
@@ -600,7 +615,7 @@ card style:
z index: 8
############################# Card type
indicator:
left: { (if is_map() then 18 else if is_season() then 43 else 31) + (if is_clear() then 2 else 0)}
left: { (if is_map() then 18 else if is_season() then 43 else 31) + (if is_clear() then 2 else 0) + (if use_flash_dot() then 3 else 0)}
top: { if is_clear() or is_map() then 298 else if is_thbland() then 449 else if is_full_art() then 332 else 300 }
width: 17
height: 17
@@ -609,7 +624,7 @@ card style:
visible: { styling.color_indicator_dot }
image: { card_identity() }
type:
left: { if is_map() then 85 else if is_season() then (if styling.color_indicator_dot then 64 else 44)+(if is_clear() then 4 else 0) else (if styling.color_indicator_dot then 52 else 32) + (if is_clear() then 4 else 0) }
left: { if is_map() then 85 else (if use_flash_dot() then 3 else 0) + if is_season() then (if styling.color_indicator_dot then 64 else 44)+(if is_clear() then 4 else 0) else (if styling.color_indicator_dot then 52 else 32) + (if is_clear() then 4 else 0) }
top: { (if is_map() then 297.5 else if is_clear() then 294 else if is_thbland() then 444 else if is_full_art() then 329 else 296) + shrink_type() }
width: { if is_map() then 205 else (if styling.color_indicator_dot then "290" else "310") - (if card_style.rarity.width == 0 then 0 else max(22,card_style.rarity.content_width)) - (if is_season() then 12 else 0) }
height: { (if is_map() then 18 else 20) - shrink_type() }
@@ -1025,7 +1040,7 @@ card style:
copyright:
right: 350
top:
{
{
if is_leveler() and not lone_pt()
then 488
else if (starting_loyalty() and card.loyalty != "") or (card.pt != "" and not starting_loyalty())
@@ -1041,6 +1056,8 @@ card style:
size: 6.5
color: white
weight: bold
############################################################## Extra card fields
extra card field:
type: text
@@ -1388,6 +1405,14 @@ extra card field:
save value: true
editable: true
description: Where they put mtgstory.com on story spotlights.
extra card field:
type: choice
name: flash indicator
choice: dot
save value: false
editable: false
extra card style:
promo label:
left: 40
@@ -1496,7 +1521,7 @@ extra card style:
auto copyright:
right: 350
top:
{
{
if is_leveler() and not lone_pt()
then 488
else if (starting_loyalty() and card.loyalty != "") or (card.pt != "" and not starting_loyalty())
@@ -1532,7 +1557,7 @@ extra card style:
image: {if (is_clear() or clear_tops()) and not is_devoid() then "legend/xcrown.png" else if is_fnm() then set_mask(image:crown_background(), mask:"legend/fnm_mask.png") else crown_background()}
z index: 5
visible: {is_legend() and not is_map()}
mask: {if is_legend() and styling.legend_crown != "custom" and (is_curtains() or is_expanded_art() or is_puma() or is_devoid()) then "curtainmask.png" else if is_season() then "crown_season_mask.png" else ""}
mask: {if is_legend() and styling.legend_crown != "custom" and (is_curtains() or is_expanded_art() or is_puma() or is_devoid() and not is_borderless()) then "curtainmask.png" else if is_season() then "crown_season_mask.png" else ""}
curtain:
left: 0
top: 0
@@ -1540,7 +1565,7 @@ extra card style:
height: 523
render style: image
image: {if is_cons() then cons_background() else curtain_background()}
z index: 0
z index: 3
visible: {is_cons() or is_curtains()}
mask: {if is_legend() and is_curtains() then "lcurtainmask.png"}
scrolls:
@@ -1701,7 +1726,7 @@ extra card style:
visible: {card.level_3 != ""}
level 2 overlay:
left: 29
top: { if is_d20() then top_of_para(rolls_start(card.text)) else 329 + lv_2_coordinate()}
top: { if is_d20() then top_of_para(rolls_start(card.text)-invert_rolls()) else 329 + lv_2_coordinate()}
height: { if is_d20() then height_of_para(rolls_start(card.text)) else lv_2_height()}
width: 314
z index: 1
@@ -1710,8 +1735,8 @@ extra card style:
visible: {(is_d20() and number_of_rolls(card.text) > 0) or (is_leveler() and not is_full_art() and not is_map() and not is_fnm() and not is_inverted())}
level 3 overlay:
left: 29
top: { if is_d20() then top_of_para(rolls_start(card.text)+2) else 329 + lv_3_coordinate()}
height: { if is_d20() then height_of_para(rolls_start(card.text)+2) else lv_3_height()}
top: { if is_d20() then top_of_para(rolls_start(card.text)+2-invert_rolls()) else 329 + lv_3_coordinate()}
height: { if is_d20() then height_of_para(rolls_start(card.text)+2-invert_rolls()) else lv_3_height()}
width: 314
z index: 1
render style: image
@@ -1719,8 +1744,8 @@ extra card style:
visible: {(is_d20() and number_of_rolls(card.text)-no_roll(card.text) > 2) or (is_leveler() and not is_full_art() and not is_map() and not is_fnm() and not is_inverted())}
level 4 overlay:
left: 29
top: { if is_d20() then top_of_para(rolls_start(card.text)+4) else 329 + lv_4_coordinate()}
height: { if is_d20() then height_of_para(rolls_start(card.text)+4) else lv_4_height()}
top: { if is_d20() then top_of_para(rolls_start(card.text)+4-invert_rolls()) else 329 + lv_4_coordinate()}
height: { if is_d20() then height_of_para(rolls_start(card.text)+4-invert_rolls()) else lv_4_height()}
width: 314
z index: 1
render style: image
@@ -1877,3 +1902,12 @@ extra card style:
size: 7
color: white
weight: bold
flash indicator:
left: 0
top: 0
width: 375
height: 523
z index: 5
render style: image
image: flashdot.png
visible: { use_flash_dot() }

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 587 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 610 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,916 @@
mse version: 2.0.0
game: magic
short name: Dungeons
full name: AFR Dungeons
icon: card-sample.png
installer group: magic/m15 style/normal cards
position hint: 099
version: 2021-06-25
depends on:
package: magic.mse-game
version: 2014-06-25
card width: 375
card height: 523
card dpi: 150
#################################
##### Beta blank by CompleteIndie
init script:
text_filter :=
text_filter +
replace@(
match:"^([^\\\n]+)(\\\n|[ ][ ])"
replace:"<font:Beleren Bold>\\1</font>\\2"
)
card_shape := {"token"}
shrink_name := {if styling.shrink_name_text != "" then to_int(styling.shrink_name_text) else 0 }
note_cleaner := replace@(match:"\\+", replace:"")
num_cleaner := replace@(match:"[0-9]", replace:"")
max_level := {
notes := "1,2,2,3,3,3,4,"
if styling.room_notation != "" then
notes := note_cleaner(styling.room_notation)
if contains(notes, match:"7") then 7
else if contains(notes, match:"6") then 6
else if contains(notes, match:"5") then 5
else if contains(notes, match:"4") then 4
else 3
}
level_counts := {
notes := "1,2,2,3,3,3,4,"
if styling.room_notation != "" then
notes := note_cleaner(styling.room_notation)
saga_lore_count(split_text(replace(notes, match:",[^,]+$", replace:","), match:","))
}
double_counts := {
notes := ""
if styling.double_rooms != "" then
notes := note_cleaner(styling.double_rooms)
saga_lore_count(split_text(replace(notes, match:",[^,]+$", replace:","), match:","))
}
plus_check := {
counts := double_counts()
if counts[input] > check then box_height(input+1) else 0
}
box_width := {
rooms := level_counts()[input]
if input >= max_level()-1 then 0
else if box > rooms then 0
else 310 / rooms
}
##pad_sum := {
## sum := 0
## splits := split_text(styling.pad_levels, match:",")
## for x from 0 to length(splits)-1 do
## sum := sum + to_int(splits[x])
## sum
##}
box_height := {
counts := level_counts()
h := 370
end_float := 0
avg_float := 0
pad_float := 0
output := 0
##pad := to_int(pull_comma_array(styling.pad_levels, cell:input))
##if input == max_level()-2 then
## pad := pad - to_int(pull_comma_array(styling.pad_levels, cell:input+1))
##else if input == max_level()-1 then
## pad := -pad_sum()
map := [0:0, 1: 35, 2:75, 3:95]
for x from 0 to length(counts)-1 do
(
h := h - map[min(3, counts[x])]
)
##if h >= pad_sum() then (
## h := h - pad
## pad_float := pad
##)
if h >= 19 then
(
h := h-19
end_float := 19
)
levels := max_level()
if h < 0 then levels := levels - 2
avg_float := h / levels
if input == max_level()-1 then
output := map[min(3, counts[input])] + end_float + max(0,avg_float)
else if input == 0 then
output := map[min(3, counts[input])] + max(0,avg_float)
else
output := map[min(3, counts[input])] + avg_float
output
}
pick_a_lane := {
counts := level_counts()
pluses := double_counts()
out_lane := counts[input]
in_lane := counts[input+1]
plus := pluses[input]
if out_lane == 1 then
if in_lane == 1 then "lanes/onelane.png"
else if in_lane == 2 then "lanes/twolane.png"
else if in_lane == 3 then "lanes/threelane.png"
else "lanes/onelane.png"
else if out_lane == 2 then
if plus > 0 then "lanes/halflane.png"
else if in_lane == 3 then "lanes/fourlane.png"
else "lanes/twolane.png"
else if out_lane == 3 then
if plus == 1 then "lanes/splitlane.png"
else if plus == 2 then "lanes/thirdlane.png"
else if in_lane == 2 then "lanes/fourlane.png"
else "lanes/threelane.png"
else "lanes/onelane.png"
}
pick_a_wall := {
rooms := counts := level_counts()[input]
if rooms == 3 then "lanes/twowall.png"
else if rooms == 2 then "lanes/onewall.png"
else "lanes/nowall.png"
}
font_size := {if styling.font_size != "" then styling.font_size else 11}
mana_t := {
if styling.tap_symbol == "old" then "old"
else if styling.tap_symbol == "diagonal T" then "older"
else "new"
}
# Use guild mana symbols?
guild_mana := { styling.use_guild_mana_symbols }
transfer_levels := {false}
############################################################## Set info fields
styling field:
type: text
name: room notation
description: Code to generate a dungeon setup. See dropdown below for instructions
styling field:
type: text
name: double rooms
description: The levels to have a double-height room on.
styling field:
type: choice
name: notation help
choice: List rooms in a comma-separated list. Default 1,2,2,3,3,3,4,
choice: List the level number equal to the number of rooms on the level
choice: So default is 1 room, 2 rooms, 3 rooms, 1 room in four levels
choice: First and last are max 1 room, others are max 3 rooms, max 7 levels total
choice: For double size rooms, list the levels in the double rooms style
choice: Listing it once puts it on second, twice on middle and third rows
choice: The next row needs to be the same number of rooms or it will glitch
choice: Currently it can't do first row doubles or triple rooms, may be a future feature
styling field:
type: text
name: font size
description: Font size for the rooms. Default is 11.
styling field:
type: boolean
name: remove from autocount
description: Removes the automatic card number for specific cards, to allow for overcounted cards like in Planeswalker Decks.
initial: no
styling field:
type: text
name: shrink name text
description: Reduces the name text N points.
styling field:
type: package choice
name: text box mana symbols
match: magic-mana-*.mse-symbol-font
initial: magic-mana-small.mse-symbol-font
styling field:
type: boolean
name: promo
description: Is this card a promo card, with the "P" rarity?
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?
initial: modern
choice: modern
choice: old
choice: diagonal T
############################################################## Card fields
card style:
border color:
left: 0
top : 0
width: 375
height: 523
radius: 18
left width: 17
right width: 17
top width: 17
bottom width: 18
z index: 4
mask: border_mask.png
name:
left: 30
top: 26
width: 315
height: {28 - (0.5 * shrink_name())}
alignment: middle center
padding bottom: -2
padding top: 2
z index: 5
font:
name: Beleren Small Caps Bold
size: { 17 - shrink_name()}
color: rgb(222,222,222)
############################# Image
############################# Textboxes
rule text:
left: 33
top: 79
width: 310
height: {box_height(0)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 1 text:
left: 33
top: {card_style.rule_text.bottom}
width: {box_width(1, box:1)}
height: {box_height(1)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 2 text:
left: {card_style.level_1_text.right}
top: {card_style.rule_text.bottom}
width: {box_width(1, box:2)}
height: {box_height(1)+plus_check(1, check:0)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 3 text:
left: {card_style.level_2_text.right}
top: {card_style.rule_text.bottom}
width: {box_width(1, box:3)}
height: {box_height(1)+plus_check(1, check:1)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 4 text:
left: 33
top: {card_style.level_1_text.bottom}
width: {box_width(2, box:1)}
height: {box_height(2)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 5 text:
left: {card_style.level_4_text.right}
top: {card_style.level_1_text.bottom}
width: {box_width(2, box:2)}
height: {box_height(2)-plus_check(1, check:0)+plus_check(2, check:0)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 6 text:
left: {card_style.level_5_text.right}
top: {card_style.level_1_text.bottom}
width: {box_width(2, box:3)}
height: {box_height(2)-plus_check(1, check:1)+plus_check(2, check:1)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 7 text:
left: 33
top: {card_style.level_4_text.bottom}
width: {box_width(3, box:1)}
height: {box_height(3)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 8 text:
left: {card_style.level_7_text.right}
top: {card_style.level_4_text.bottom}
width: {box_width(3, box:2)}
height: {box_height(3)-plus_check(2, check:0)+plus_check(3, check:0)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 9 text:
left: {card_style.level_8_text.right}
top: {card_style.level_4_text.bottom}
width: {box_width(3, box:3)}
height: {box_height(3)-plus_check(2, check:1)+plus_check(3, check:1)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 10 text:
left: 33
top: {card_style.level_7_text.bottom}
width: {box_width(4, box:1)}
height: {box_height(4)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 11 text:
left: {card_style.level_10_text.right}
top: {card_style.level_7_text.bottom}
width: {box_width(4, box:2)}
height: {box_height(4)-plus_check(3, check:0)+plus_check(4, check:0)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 12 text:
left: {card_style.level_11_text.right}
top: {card_style.level_7_text.bottom}
width: {box_width(4, box:3)}
height: {box_height(4)-plus_check(3, check:1)+plus_check(4, check:1)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 13 text:
left: 33
top: {card_style.level_10_text.bottom}
width: {box_width(5, box:1)}
height: {box_height(5)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 14 text:
left: {card_style.level_13_text.right}
top: {card_style.level_10_text.bottom}
width: {box_width(5, box:2)}
height: {box_height(5)-plus_check(4, check:0)+plus_check(5, check:0)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
level 15 text:
left: {card_style.level_14_text.right}
top: {card_style.level_10_text.bottom}
width: {box_width(5, box:3)}
height: {box_height(5)-plus_check(4, check:1)+plus_check(5, check:1)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
rule text 2:
left: 33
bottom: 448
width: 310
height: {box_height(max_level()-1)}
font:
name: MPlantin
italic name: MPlantin-Italic
size: {font_size()}
scale down to: 6
color: black
symbol font:
name: { styling.text_box_mana_symbols }
size: {font_size()}
scale down to: 6
alignment: middle center
z index: 2
padding top: 2
padding bottom: 2
padding left: 4
padding right: 6
line height hard: 0.9
line height line: 0.9
line height soft: 0.9
line height hard max: 0.9
line height line max: 0.9
############################# Card sorting / numbering
set code:
left: 24
top: 498
width: 40
height: 10
z index: 1
font:
name: Relay-Medium
size: 7
color: white
weight: bold
############################# Copyright stuff
copyright:
right: 350
top: { if card.pt != "" then 500 else 488 }
width: 140
height: 10
z index: 2
visible: {not set.automatic_copyright}
alignment: middle right shrink-overflow
font:
name: Matrix
size: 7
color: white
weight: bold
############################################################## Extra card fields
extra card field:
type: text
name: card code
save value: false
script:
if set.automatic_card_numbers and not styling.remove_from_autocount then
forward_editor(prefix: card_number_m15() + "/" + card_count_m15() + " " + rarity_code() + " ", field: card.card_code_text)
else
combined_editor(field1: card.custom_card_number, separator: " " + rarity_code() + " ", field2: card.card_code_text)
extra card field:
type: choice
name: hwall 1
editable: false
save value: false
choice: wall
extra card field:
type: choice
name: hwall 2
editable: false
save value: false
choice: wall
extra card field:
type: choice
name: hwall 3
editable: false
save value: false
choice: wall
extra card field:
type: choice
name: hwall 4
editable: false
save value: false
choice: wall
extra card field:
type: choice
name: hwall 5
editable: false
save value: false
choice: wall
extra card field:
type: choice
name: hwall 6
editable: false
save value: false
choice: wall
extra card field:
type: choice
name: vwall 1
editable: false
save value: false
choice: wall
extra card field:
type: choice
name: vwall 2
editable: false
save value: false
choice: wall
extra card field:
type: choice
name: vwall 3
editable: false
save value: false
choice: wall
extra card field:
type: choice
name: vwall 4
editable: false
save value: false
choice: wall
extra card field:
type: choice
name: vwall 5
editable: false
save value: false
choice: wall
extra card field:
type: text
name: auto copyright
script: set.copyright
save value: false
editable: false
show statistics: false
extra card field:
type: choice
name: border
editable: false
save value: false
choice: border
extra card style:
card code:
left: 24
top: 488
width: 120
height: 10
z index: 1
font:
name: Relay-Medium
size: 7
color: white
weight: bold
auto copyright:
right: 350
top: { if card.pt != "" then 500 else 488 }
width: 140
height: 10
z index: 2
alignment: middle right shrink-overflow
visible: {set.automatic_copyright}
font:
name: Matrix
size: 7
color: white
weight: bold
border:
left: 0
top: 0
width: 375
height: 523
z index: 0
render style: image
image: card.png
hwall 1:
left: 31
top: {card_style.rule_text.bottom-4}
width: 312
height: 9
render style: image
image: {pick_a_lane(0)}
z index: 3
hwall 2:
left: 31
top: {card_style.level_1_text.bottom-4}
width: 312
height: 9
render style: image
image: {pick_a_lane(1)}
z index: 3
hwall 3:
left: 31
top: {card_style.level_4_text.bottom-4}
width: 312
height: 9
render style: image
image: {pick_a_lane(2)}
z index: 3
visible: {max_level() >= 4}
hwall 4:
left: 31
top: {card_style.level_7_text.bottom-4}
width: 312
height: 9
render style: image
image: {pick_a_lane(3)}
z index: 3
visible: {max_level() >= 5}
hwall 5:
left: 31
top: {card_style.level_10_text.bottom-4}
width: 312
height: 9
render style: image
image: {pick_a_lane(4)}
z index: 3
visible: {max_level() >= 6}
hwall 6:
left: 31
top: {card_style.level_13_text.bottom-4}
width: 312
height: 9
render style: image
image: {pick_a_lane(5)}
z index: 3
visible: {max_level() >= 7}
vwall 1:
left: 31
top: {card_style.rule_text.bottom}
width: 312
height: {box_height(1)}
render style: image
image: {pick_a_wall(1)}
z index: 3
vwall 2:
left: 31
top: {card_style.level_1_text.bottom+3}
width: 312
height: {card_style.level_4_text.height}
render style: image
image: {pick_a_wall(2)}
z index: 3
visible: {max_level() >= 4}
vwall 3:
left: 31
top: {card_style.level_4_text.bottom+3}
width: 312
height: {card_style.level_7_text.height}
render style: image
image: {pick_a_wall(3)}
z index: 3
visible: {max_level() >= 5}
vwall 4:
left: 31
top: {card_style.level_7_text.bottom}
width: 312
height: {box_height(4)}
render style: image
image: {pick_a_wall(4)}
z index: 3
visible: {max_level() >= 6}
vwall 5:
left: 31
top: {card_style.level_10_text.bottom}
width: 312
height: {box_height(5)}
render style: image
image: {pick_a_wall(5)}
z index: 3
visible: {max_level() >= 7}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 768 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 110 KiB

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 KiB

After

Width:  |  Height:  |  Size: 103 KiB

Some files were not shown because too many files have changed in this diff Show More