Remove monocolor blend masks from showcases (#137)
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 126 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 126 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 126 B |
@@ -100,8 +100,10 @@ init script:
|
||||
template := { template_prefix[type]() + input + template_suffix[type] }
|
||||
land_template := { template_prefix[type]() + (if input == "a" then "c" else input) + template_suffix[type] }
|
||||
|
||||
card_crown := { color_background(type:"crown", base_hybrid:card_hybrid) }
|
||||
card_ptbox := { color_background(type:"pt", base_hybrid:card_hybrid) }
|
||||
card_background := { color_background(type:"card", base_hybrid:card_hybrid, hybrid_blend: "white", artifact_blend: "white") }
|
||||
card_crown := { color_background(type:"crown", base_hybrid:card_hybrid, hybrid_blend: "white", artifact_blend: "white") }
|
||||
card_ptbox := { color_background(type:"pt", base_hybrid:card_hybrid, hybrid_blend: "white", artifact_blend: "white") }
|
||||
module_identity := { color_background(type:"identity", base_hybrid:identity_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white", folder:template_prefix["identity"]()) }
|
||||
|
||||
is_land_framed :=
|
||||
{
|
||||
|
||||
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 126 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 126 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 191 B |
|
Before Width: | Height: | Size: 126 B |
|
Before Width: | Height: | Size: 191 B |
@@ -105,9 +105,11 @@ init script:
|
||||
template := { template_prefix[type]() + input + template_suffix[type] }
|
||||
land_template := { template_prefix[type]() + (if input == "a" then "c" else input) + template_suffix[type] }
|
||||
|
||||
card_textbox := { color_background(type:"textbox", base_hybrid:card_hybrid) }
|
||||
card_crown := { color_background(type:"crown", base_hybrid:card_hybrid) }
|
||||
card_ptbox := { color_background(type:"pt", base_hybrid:card_hybrid) }
|
||||
card_background := { color_background(type:"card", base_hybrid:card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_textbox := { color_background(type:"textbox", base_hybrid:card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_crown := { color_background(type:"crown", base_hybrid:card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
#card_ptbox := { color_background(type:"pt", base_hybrid:card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
module_identity := { color_background(type:"identity", base_hybrid:identity_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white", folder:template_prefix["identity"]()) }
|
||||
|
||||
is_land_framed :=
|
||||
{
|
||||
|
||||
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
@@ -165,10 +165,10 @@ init script:
|
||||
else template_prefix[type] + input + template_suffix[type]
|
||||
}
|
||||
|
||||
card_background := { color_background(input: card.card_color, type: "card", base_hybrid: card_hybrid) }@(offset:0)
|
||||
card_loyaltybox := { color_background(input: card.card_color, type: "loyalty", base_hybrid: card_hybrid) }@(offset:0)
|
||||
card_stamprim := { color_background(input: card.card_color, type: "stamprim", base_hybrid: card_hybrid) }@(offset:0)
|
||||
card_logo := { color_background(input: card.card_color, type: "logo", base_hybrid: card_hybrid) }@(offset:0)
|
||||
card_background := { color_background(input: card.card_color, type: "card", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "black") }
|
||||
card_loyaltybox := { color_background(input: card.card_color, type: "loyalty", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "black") }
|
||||
card_stamprim := { color_background(input: card.card_color, type: "stamprim", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "black") }
|
||||
card_logo := { color_background(input: card.card_color, type: "logo", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "black") }
|
||||
|
||||
is_promo := { styling.promo }
|
||||
|
||||
|
||||
@@ -67,6 +67,11 @@ init script:
|
||||
italic: {""}
|
||||
]
|
||||
|
||||
template_prefix := [ identity: "/magic-modules.mse-include/indicators/" ]
|
||||
template_suffix := [ identity: "identity.png" ]
|
||||
template := { template_prefix[type] + input + template_suffix[type] }
|
||||
land_template := { template_prefix[type] + ( if input == "a" then "c" else input) + "l" + template_suffix[type] }
|
||||
|
||||
is_promo := { styling.promo }
|
||||
is_unsorted := { styling.remove_from_autocount }
|
||||
|
||||
|
||||
@@ -90,6 +90,11 @@ init script:
|
||||
# output
|
||||
#}@(face:1)
|
||||
|
||||
template_prefix := [ identity: "/magic-modules.mse-include/indicators/" ]
|
||||
template_suffix := [ identity: "identity.png" ]
|
||||
template := { template_prefix[type] + input + template_suffix[type] }
|
||||
land_template := { template_prefix[type] + ( if input == "a" then "c" else input) + "l" + template_suffix[type] }
|
||||
|
||||
is_promo := { styling.promo }
|
||||
|
||||
is_unsorted := { styling.remove_from_autocount }
|
||||
|
||||
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
@@ -103,12 +103,12 @@ init script:
|
||||
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) }
|
||||
card_ptbox := { color_background(input: card.card_color, type: "pt", base_hybrid: card_hybrid) }
|
||||
card_crown := { color_background(input: card.card_color, type: "crown", base_hybrid: card_hybrid) }
|
||||
card_alias := { color_background(input: card.card_color, type: "alias", base_hybrid: card_hybrid) }
|
||||
card_stamp := { color_background(input: card.card_color, type: "stamp", base_hybrid: card_hybrid) }
|
||||
card_nonstamp := { color_background(input: card.card_color, type: "nonstamp", base_hybrid: card_hybrid) }
|
||||
card_background := { color_background(input: card.card_color, type: "card", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white") }
|
||||
card_ptbox := { color_background(input: card.card_color, type: "pt", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_crown := { color_background(input: card.card_color, type: "crown", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_alias := { color_background(input: card.card_color, type: "alias", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_stamp := { color_background(input: card.card_color, type: "stamp", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_nonstamp := { color_background(input: card.card_color, type: "nonstamp", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
|
||||
pure_colors :=
|
||||
{
|
||||
|
||||
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
@@ -135,14 +135,14 @@ init script:
|
||||
}
|
||||
|
||||
|
||||
card_background := { color_background(input: card.card_color, type: "card", base_hybrid: card_hybrid) }
|
||||
card_ptbox := { color_background(input: card.card_color, type: "pt", base_hybrid: card_hybrid) }
|
||||
card_nonptbox := { color_background(input: card.card_color, type: "nonpt", base_hybrid: card_hybrid) }
|
||||
card_nonptptbox := { color_background(input: card.card_color, type: "nonptpt", base_hybrid: card_hybrid) }
|
||||
card_crown := { color_background(input: card.card_color, type: "crown", base_hybrid: card_hybrid) }
|
||||
card_alias := { color_background(input: card.card_color, type: "alias", base_hybrid: card_hybrid) }
|
||||
card_stamp := { color_background(input: card.card_color, type: "stamp", base_hybrid: card_hybrid) }
|
||||
card_nonstamp := { color_background(input: card.card_color, type: "nonstamp", base_hybrid: card_hybrid) }
|
||||
card_background := { color_background(input: card.card_color, type: "card", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_ptbox := { color_background(input: card.card_color, type: "pt", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_nonptbox := { color_background(input: card.card_color, type: "nonpt", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_nonptptbox := { color_background(input: card.card_color, type: "nonptpt", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_crown := { color_background(input: card.card_color, type: "crown", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_alias := { color_background(input: card.card_color, type: "alias", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_stamp := { color_background(input: card.card_color, type: "stamp", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_nonstamp := { color_background(input: card.card_color, type: "nonstamp", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
|
||||
pure_colors :=
|
||||
{
|
||||
|
||||
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
@@ -172,13 +172,13 @@ init script:
|
||||
template := { template_prefix[type] + input + template_suffix[type] }
|
||||
land_template := { template_prefix[type] + (if input == "a" then "c" else input) + template_suffix[type] }
|
||||
|
||||
card_border := { color_background(input: card.card_color, type: "border", base_hybrid: card_hybrid) }
|
||||
card_background := { color_background(input: card.card_color, type: "card", base_hybrid: card_hybrid) }
|
||||
card_ptbox := { color_background(input: card.card_color, type: "pt", base_hybrid: card_hybrid) }
|
||||
card_crown := { color_background(input: card.card_color, type: "crown", base_hybrid: card_hybrid) }
|
||||
card_alias := { color_background(input: card.card_color, type: "alias", base_hybrid: card_hybrid) }
|
||||
card_stamp := { color_background(input: card.card_color, type: "stamp", base_hybrid: card_hybrid) }
|
||||
card_nonstamp := { color_background(input: card.card_color, type: "nonstamp", base_hybrid: card_hybrid) }
|
||||
card_border := { color_background(input: card.card_color, type: "border", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "black") }
|
||||
card_background := { color_background(input: card.card_color, type: "card", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_ptbox := { color_background(input: card.card_color, type: "pt", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_crown := { color_background(input: card.card_color, type: "crown", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_alias := { color_background(input: card.card_color, type: "alias", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_stamp := { color_background(input: card.card_color, type: "stamp", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
card_nonstamp := { color_background(input: card.card_color, type: "nonstamp", base_hybrid: card_hybrid, hybrid_blend: "white", artifact_blend: "white", multicolor_blend: "white") }
|
||||
|
||||
pure_colors :=
|
||||
{
|
||||
|
||||
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |
|
Before Width: | Height: | Size: 189 B |