mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-11 13:17:00 -04:00
New masks for colored artifacts in magic-future-textless.
New land hybrid masks for old style templates. Added colored Xander Hybrid Mana Watermarks (in addition to colorless). Removed an un-needed mask from magic-old-split. Removed an un-needed ptbox from magic-future-textless. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@603 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 886 B |
Binary file not shown.
|
After Width: | Height: | Size: 875 B |
@@ -26,6 +26,46 @@ init script:
|
||||
|
||||
# Only white cards use a black font
|
||||
font_colors_white := { input != "w" }
|
||||
|
||||
#Multicolor lands blend differently than hybrids.
|
||||
#Did it this way because was getting longer other way, due to redefining color_background parts.
|
||||
color_combination := {
|
||||
# The base hybrid, without the outer frame blended over it
|
||||
base := base_hybrid[shape][color_count]()
|
||||
|
||||
# Put a frame around it?
|
||||
if type == "card" and land and color_count == 2 and shape != "overlay" and styling.alpha_style_blending then
|
||||
masked_blend(
|
||||
mask: "alpha_blend.png",
|
||||
dark: land_template(colors[0]),
|
||||
light: land_template(colors[1]),
|
||||
)
|
||||
else if land then
|
||||
masked_blend(
|
||||
mask: "land_blend_{type}.png",
|
||||
dark: land_template("c"),
|
||||
light: base,
|
||||
)
|
||||
else if multi then
|
||||
masked_blend(
|
||||
mask: "multicolor_blend_{type}.png",
|
||||
dark: template("m"),
|
||||
light: base,
|
||||
)
|
||||
else if artifact then
|
||||
masked_blend(
|
||||
mask: "multicolor_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",
|
||||
dark: land_template("c"),
|
||||
light: base,
|
||||
)
|
||||
else base
|
||||
}
|
||||
|
||||
############################################################## Set info fields
|
||||
set info style:
|
||||
|
||||
Reference in New Issue
Block a user