Lots of font size alterations.

Fixed a problem with Magic textless that prevented pt box display.
Added most (but not all) of overlay hybrid scripts.

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@413 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
pichoro
2007-06-07 02:53:39 +00:00
parent 06138ee325
commit 0fd8c42a8d
21 changed files with 193 additions and 45 deletions
+50 -3
View File
@@ -59,6 +59,16 @@ card_hybrid_2v := {
)
)
}
# 'overlay' 2 color hybrid
card_hybrid_overlay := {
card_hybrid_nt(
combine_blend(
image1: card_template(input[0]),
image2: card_template(input[1]),
combine: "symmetric overlay"
)
)
}
# 'star' 3 color hybrid
card_hybrid_3 := {
card_hybrid_nt(
@@ -657,7 +667,7 @@ land_hybrid_6h_typeline := {
)
}
# horizontal 7 color hybrid
card_hybrid_7h_typeline := {
land_hybrid_7h_typeline := {
card_hybrid_nt(
linear_blend(
image1: typelineland_template(input[0])
@@ -876,7 +886,7 @@ land_hybrid_6h_textbox := {
)
}
# horizontal 7 color hybrid
card_hybrid_7h_textbox := {
land_hybrid_7h_textbox := {
card_hybrid_nt(
linear_blend(
image1: textboxland_template(input[0])
@@ -946,6 +956,16 @@ card_hybrid_2v_typeline := {
)
)
}
# 'overlay' 2 color pt hybrid
card_hybrid_overlay_typeline := {
card_hybrid_nt(
combine_blend(
image1: typeline_template(input[0]),
image2: typeline_template(input[1]),
combine: "symmetric overlay"
)
)
}
# 'star' 3 color hybrid
card_hybrid_3_typeline := {
card_hybrid_nt_typeline(
@@ -1177,6 +1197,16 @@ card_hybrid_2v_textbox := {
)
)
}
# 'overlay' 2 color pt hybrid
card_hybrid_overlay_textbox := {
card_hybrid_nt(
combine_blend(
image1: textbox_template(input[0]),
image2: textbox_template(input[1]),
combine: "symmetric overlay"
)
)
}
# 'star' 3 color hybrid
card_hybrid_3_textbox := {
card_hybrid_nt_textbox(
@@ -1381,6 +1411,14 @@ card_hybrid_pt := {
then land_hybrid_pt()
else pt_template()
}
# 'overlay' 2 color pt hybrid
card_hybrid_pt_overlay := {
combine_blend(
image1: pt_template(input[0]),
image2: pt_template(input[1]),
combine: "symmetric overlay"
)
}
# Mask part of the input p/t box with the "hpt.jpg" file
land_hybrid_pt := {
masked_blend(
@@ -1389,7 +1427,6 @@ land_hybrid_pt := {
light: pt_template(),
)
}
# Multicolor blend for pt box
multi_hybrid_pt := {
masked_blend(
@@ -1430,6 +1467,16 @@ card_hybrid_pt2 := {
then land_hybrid_pt2()
else pt2_template()
}
# 'overlay' 2 color pt hybrid
card_hybrid_pt2_overlay := {
card_hybrid_nt(
combine_blend(
image1: pt2_template(input[0]),
image2: pt2_template(input[1]),
combine: "symmetric overlay"
)
)
}
# Mask part of the input p/t box with the "hpt.jpg" file
land_hybrid_pt2 := {
masked_blend(