sync with Full and prune

update templates to sync up with Full Pack
remove depreciated and full-pack exclusive templates
This commit is contained in:
cajun
2024-01-05 18:54:40 -06:00
parent a2e9c76161
commit 8e6d6c7198
16551 changed files with 777665 additions and 210108 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