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

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