fix assorted template errors

This commit is contained in:
cajun
2024-02-10 23:26:37 -06:00
parent 5ab7fdca45
commit 00d497c854
8 changed files with 60 additions and 62 deletions

View File

@@ -141,7 +141,7 @@ styling field:
name: promo name: promo
description: Is this card a promo card, with the "P" rarity? description: Is this card a promo card, with the "P" rarity?
initial: no initial: no
styling field styling field:
type: boolean type: boolean
name: masterpiece name: masterpiece
description: Is this card a Masterpiece? description: Is this card a Masterpiece?
@@ -304,9 +304,7 @@ card style:
name: MPlantin name: MPlantin
italic name: MPlantin-Italic italic name: MPlantin-Italic
size: 10 size: 10
color: if (card.color == "black" ) color: { if card.card_color == "black" then "white" else "black" }
then "white"
else "black"
symbol font: symbol font:
name: { styling.text_box_mana_symbols } name: { styling.text_box_mana_symbols }
size: 11.5 size: 11.5

View File

@@ -644,7 +644,7 @@ card style:
name: Beleren Bold name: Beleren Bold
size: {if styling.three_cards == "yes" then 8 else 16 } size: {if styling.three_cards == "yes" then 8 else 16 }
color: black color: black
separator color: red separator color: red
pt 2: pt 2:
z index: 2 z index: 2
left: 143 left: 143
@@ -928,7 +928,7 @@ extra card field:
editable: true editable: true
save value: true save value: true
description: The image of the card description: The image of the card
extra card field extra card field:
type: choice type: choice
name: change focus name: change focus
choice: choice:

View File

@@ -29,13 +29,13 @@
# Names of colors # Names of colors
color_name := { color_name := {
if input = "W" then "white" if input == "W" then "white"
else if input = "U" then "blue" else if input == "U" then "blue"
else if input = "B" then "black" else if input == "B" then "black"
else if input = "R" then "red" else if input == "R" then "red"
else if input = "G" then "green" else if input == "G" then "green"
else if input = "P" then "purple" else if input == "P" then "purple"
else if input = "K" then "pink" else if input == "K" then "pink"
else "" else ""
} }
color_names_6 := { color_name(colors.0) + ", " + color_name(colors.1) + ", " + color_name(colors.2) + ", " + color_name(colors.3) + ", " + color_name(colors.4) + ", " + color_name(colors.5) } color_names_6 := { color_name(colors.0) + ", " + color_name(colors.1) + ", " + color_name(colors.2) + ", " + color_name(colors.3) + ", " + color_name(colors.4) + ", " + color_name(colors.5) }
@@ -45,7 +45,7 @@
color_filterS := sort_text@(order: "<S>") color_filterS := sort_text@(order: "<S>")
mana_to_color := { mana_to_color := {
count := number_of_items(in: colors) count := number_of_items(in: colors)
if hybrid == "" and snow = "" and contains(type, match:"Artifact") then if hybrid == "" and snow == "" and contains(type, match:"Artifact") then
# not a hybrid, not snow costed, but artifact # not a hybrid, not snow costed, but artifact
if count == 0 then "colorless" if count == 0 then "colorless"
else if count == 1 then color_names_1() + ", artifact" else if count == 1 then color_names_1() + ", artifact"
@@ -146,7 +146,7 @@
if text != "" then ( if text != "" then (
if contains(text, match: "all colors") then ( if contains(text, match: "all colors") then (
colors := "WUPBRG" colors := "WUPBRG"
if land = "land" then land_multicolor() if land == "land" then land_multicolor()
else mana_to_color(hybrid: "") else mana_to_color(hybrid: "")
) else ( ) else (
colors := "" colors := ""
@@ -157,11 +157,13 @@
if contains(text, match: "red") then colors := colors + "R" if contains(text, match: "red") then colors := colors + "R"
if contains(text, match: "green") then colors := colors + "G" if contains(text, match: "green") then colors := colors + "G"
if contains(text, match: "pink") then colors := colors + "K" if contains(text, match: "pink") then colors := colors + "K"
if land = "land" then land_multicolor() if land == "land" then land_multicolor()
else mana_to_color(hybrid: "") else mana_to_color(hybrid: "")
) )
) )
else ""
) )
else ""
} }
card_color := { card_color := {
@@ -202,52 +204,52 @@
# normal/token, color, shifted, split # normal/token, color, shifted, split
hybrid_color_pair_sort := { hybrid_color_pair_sort := {
colors := sort_text(casting_cost, order: "<WUPBRGK>") colors := sort_text(casting_cost, order: "<WUPBRGK>")
if colors = "WU" then "HA" if colors == "WU" then "HA"
else if colors = "UP" then "HB" else if colors == "UP" then "HB"
else if colors = "PB" then "HC" else if colors == "PB" then "HC"
else if colors = "BR" then "HD" else if colors == "BR" then "HD"
else if colors = "RG" then "HE" else if colors == "RG" then "HE"
else if colors = "GW" then "HF" else if colors == "GW" then "HF"
else if colors = "WP" then "HG" else if colors == "WP" then "HG"
else if colors = "UB" then "HH" else if colors == "UB" then "HH"
else if colors = "PR" then "HI" else if colors == "PR" then "HI"
else if colors = "BG" then "HJ" else if colors == "BG" then "HJ"
else if colors = "RW" then "HJAA" else if colors == "RW" then "HJAA"
else if colors = "GU" then "HJAB" else if colors == "GU" then "HJAB"
else if colors = "WB" then "HJAC" else if colors == "WB" then "HJAC"
else if colors = "UR" then "HJAD" else if colors == "UR" then "HJAD"
else if colors = "PG" then "HJAE" else if colors == "PG" then "HJAE"
else if colors = "WK" then "HJBA" else if colors == "WK" then "HJBA"
else if colors = "UK" then "HJBB" else if colors == "UK" then "HJBB"
else if colors = "BK" then "HJBC" else if colors == "BK" then "HJBC"
else if colors = "RK" then "HJBD" else if colors == "RK" then "HJBD"
else if colors = "GK" then "HJBE" else if colors == "GK" then "HJBE"
else if colors = "PK" then "HJBF" else if colors == "PK" then "HJBF"
else "HK" else "HK"
} }
multi_color_pair_sort := { multi_color_pair_sort := {
colors := sort_text(casting_cost, order: "<WUPBRG>") colors := sort_text(casting_cost, order: "<WUPBRG>")
if colors = "WU" then "GA" if colors == "WU" then "GA"
else if colors = "UP" then "GB" else if colors == "UP" then "GB"
else if colors = "PB" then "GC" else if colors == "PB" then "GC"
else if colors = "BR" then "GD" else if colors == "BR" then "GD"
else if colors = "RG" then "GE" else if colors == "RG" then "GE"
else if colors = "GW" then "GF" else if colors == "GW" then "GF"
else if colors = "WP" then "GG" else if colors == "WP" then "GG"
else if colors = "UB" then "GH" else if colors == "UB" then "GH"
else if colors = "PR" then "GI" else if colors == "PR" then "GI"
else if colors = "BG" then "GJ" else if colors == "BG" then "GJ"
else if colors = "RW" then "GJAA" else if colors == "RW" then "GJAA"
else if colors = "GU" then "GJAB" else if colors == "GU" then "GJAB"
else if colors = "WB" then "GJAC" else if colors == "WB" then "GJAC"
else if colors = "UR" then "GJAD" else if colors == "UR" then "GJAD"
else if colors = "PG" then "GJAE" else if colors == "PG" then "GJAE"
else if colors = "WK" then "GJBA" else if colors == "WK" then "GJBA"
else if colors = "UK" then "GJBB" else if colors == "UK" then "GJBB"
else if colors = "BK" then "GJBC" else if colors == "BK" then "GJBC"
else if colors = "RK" then "GJBD" else if colors == "RK" then "GJBD"
else if colors = "GK" then "GJBE" else if colors == "GK" then "GJBE"
else if colors = "PK" then "GJBF" else if colors == "PK" then "GJBF"
else if contains(card.casting_cost, match:"/") then "GL" else if contains(card.casting_cost, match:"/") then "GL"
else "GK" else "GK"
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@@ -25,9 +25,6 @@ depends on:
depends on: depends on:
package: magic-mana-small.mse-symbol-font package: magic-mana-small.mse-symbol-font
version: 2007-09-23 version: 2007-09-23
depends on:
package: magic-mana-small-stroked.mse-symbol-font
version: 2020-02-07
card width: 375 card width: 375
card height: 523 card height: 523

View File

@@ -256,7 +256,6 @@ card style:
rare: script: symbol_variation(symbol: set.symbol, variation: "rare") rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare") mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
special: script: symbol_variation(symbol: set.symbol, variation: "special") special: script: symbol_variation(symbol: set.symbol, variation: "special")
constructed: script: symbol_variation(symbol: set.symbol, variation: "constructed")
############################# Text box ############################# Text box
text: text:
left: 29 left: 29

View File

@@ -7800,6 +7800,7 @@ languages := [
] ]
], ],
"English (British)": [ "English (British)": [
code : "en"
spellcheck_code : "en_GB" spellcheck_code : "en_GB"
fallback : "English" fallback : "English"
pt_separator : "/" pt_separator : "/"
@@ -7809,6 +7810,7 @@ languages := [
keyword_types : ["old","core","expert","pseudo","action","custom"] keyword_types : ["old","core","expert","pseudo","action","custom"]
], ],
"English (Canadian)": [ "English (Canadian)": [
code : "en"
spellcheck_code : "en_CA" spellcheck_code : "en_CA"
fallback : "English" fallback : "English"
pt_separator : "/" pt_separator : "/"