Personal sync, part 2

add m15-black, future-planeswalker, m15-imageupload, token-invention
add dungeon updates
add land TTK frames
lots of little cleanups
This commit is contained in:
CajunAvenger
2023-02-13 15:16:17 -06:00
parent fde79095fa
commit 1bc7bb7674
598 changed files with 5403 additions and 633 deletions

View File

@@ -864,8 +864,8 @@ color_background := {
else "radial"
# Determine background (allows styles to hook something else here)
color_combination()
}
color_combination(folder:folder)
}@(folder: "")
color_combination := {
# The base hybrid, without the outer frame blended over it
@@ -873,72 +873,72 @@ color_combination := {
# Put a frame around it?
if land and not colored_lands then
masked_blend(
mask: "multicolor_blend_{type}.png",
mask: "{folder}multicolor_blend_{type}.png",
dark: land_template("c"),
light: base,
)
else if land and multi and mask_multi_land_with_color() then
masked_blend(
mask: "hybrid_blend_{type}.png",
mask: "{folder}hybrid_blend_{type}.png",
dark: base,
light: land_template("m"),
)
else if multi and artifact then
masked_blend(
mask: "artifact_blend_{type}.png",
mask: "{folder}artifact_blend_{type}.png",
dark: template("a"),
light: masked_blend(
mask: "multicolor_blend_{type}.png",
mask: "{folder}multicolor_blend_{type}.png",
dark: template("m"),
light: base
)
)
else if multi then
masked_blend(
mask: "multicolor_blend_{type}.png",
mask: "{folder}multicolor_blend_{type}.png",
dark: template("m"),
light: base,
)
else if artifact and color_count > 1 and mask_hybrid_with_land() then
masked_blend(
mask: "artifact_blend_{type}.png",
mask: "{folder}artifact_blend_{type}.png",
dark: template("a"),
light: masked_blend(
mask: "multicolor_blend_{type}.png",
mask: "{folder}multicolor_blend_{type}.png",
dark: template("c"),
light: base
)
)
else if artifact and color_count > 1 and mask_hybrid_with_gold() then
masked_blend(
mask: "artifact_blend_{type}.png",
mask: "{folder}artifact_blend_{type}.png",
dark: template("a"),
light: masked_blend(
mask: "multicolor_blend_{type}.png",
mask: "{folder}multicolor_blend_{type}.png",
dark: template("m"),
light: base
)
)
else if artifact then
masked_blend(
mask: "artifact_blend_{type}.png",
mask: "{folder}artifact_blend_{type}.png",
dark: template("a"),
light: base,
)
else if color_count > 1 and mask_hybrid_with_land() then
masked_blend(
mask: "hybrid_blend_{type}.png",
mask: "{folder}hybrid_blend_{type}.png",
dark: land_template("c"),
light: base,
)
else if color_count > 1 and mask_hybrid_with_gold() then
masked_blend(
mask: "hybrid_blend_{type}.png",
mask: "{folder}hybrid_blend_{type}.png",
dark: land_template("m"),
light: base,
)
else base
}
}@(folder: "")
########################################################################
# Specific types