Commit 2fe2d138 authored by pichoro's avatar pichoro

Finished adding overlay hybrids.

Updated flying's reminder text to 10th edition version.
parent 610fcaf2
...@@ -1411,8 +1411,14 @@ card_hybrid_pt := { ...@@ -1411,8 +1411,14 @@ card_hybrid_pt := {
then land_hybrid_pt() then land_hybrid_pt()
else pt_template() else pt_template()
} }
# 'overlay' 2 color pt hybrid # For overlay p/t box
card_hybrid_pt_overlay := { card_hybrid_pt_overlay := {
if mask_hybrid_with_land()
then land_hybrid_pt_overlay()
else card_hybrid_pt_overlayer()
}
# 'overlay' 2 color pt hybrid
card_hybrid_pt_overlayer := {
combine_blend( combine_blend(
image1: pt_template(input[0]), image1: pt_template(input[0]),
image2: pt_template(input[1]), image2: pt_template(input[1]),
...@@ -1427,6 +1433,18 @@ land_hybrid_pt := { ...@@ -1427,6 +1433,18 @@ land_hybrid_pt := {
light: pt_template(), light: pt_template(),
) )
} }
# Mask part of the input p/t box with "hpt.jpg" file, do the rest as an overlay hybrid
land_hybrid_pt_overlay := {
masked_blend(
mask: "hybrid_blend_pt.png",
dark: "hpt.jpg",
light: combine_blend(
image1: pt_template(input[0]),
image2: pt_template(input[1]),
combine: "symmetric overlay"
)
)
}
# Multicolor blend for pt box # Multicolor blend for pt box
multi_hybrid_pt := { multi_hybrid_pt := {
masked_blend( masked_blend(
......
...@@ -1251,7 +1251,7 @@ keyword: ...@@ -1251,7 +1251,7 @@ keyword:
keyword: Flying keyword: Flying
match: Flying match: Flying
mode: core mode: core
reminder: This creature can’t be blocked except by creatures with flying and/or reach. reminder: This creature can’t be blocked except by creatures with flying or reach.
keyword: keyword:
keyword: First strike keyword: First strike
match: First strike match: First strike
......
...@@ -465,7 +465,7 @@ keyword: ...@@ -465,7 +465,7 @@ keyword:
keyword: Flying keyword: Flying
match: Flying match: Flying
mode: core mode: core
reminder: This creature can’t be blocked except by creatures with flying and/or reach. reminder: This creature can’t be blocked except by creatures with flying or reach.
keyword: keyword:
keyword: First strike keyword: First strike
match: First strike match: First strike
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment