Change tarkir draconic 3 and 4 color hybrids (#147)

This commit is contained in:
GenevensiS
2025-07-04 05:30:52 +02:00
committed by GitHub
parent 203a83cf54
commit 764560a3a9
20 changed files with 51 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 KiB

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

After

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 KiB

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 103 KiB

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -136,19 +136,43 @@ init script:
card_stamp_offset_top_1 := { if stamp_shape() == "triangle" then 6 else 0 }
old_card_hybrid_2 := card_hybrid_2
old_card_hybrid_2 := horizontal_card_hybrid["2"]
old_card_hybrid_3 := horizontal_card_hybrid["3"]
old_card_hybrid_4 := horizontal_card_hybrid["4"]
card_hybrid_2 :=
{
if type == "page" then old_card_hybrid_2()
else masked_blend(mask: "special_blend_card.png", dark: template(colors.0), light: template(colors.1))
else masked_blend(
mask: "special_blend_card.png",
light: template(colors[1 + shift]),
dark: template(colors[0 + shift])
)
}@(shift:0)
card_hybrid_3 :=
{
if type == "page" then old_card_hybrid_3()
else masked_blend(
mask: "special_blend_card_v.png",
light: template(colors.2),
dark: card_hybrid_2(shift:0)
)
}
card_hybrid_4 :=
{
if type == "page" then old_card_hybrid_4()
else masked_blend(
mask: "special_blend_card_v.png",
light: card_hybrid_2(shift:2),
dark: card_hybrid_2(shift:0)
)
}
horizontal_card_hybrid :=
[
0: horizontal_card_hybrid[0]
1: horizontal_card_hybrid[1]
2: card_hybrid_2
3: horizontal_card_hybrid[3]
4: horizontal_card_hybrid[4]
3: card_hybrid_3
4: card_hybrid_4
5: horizontal_card_hybrid[5]
6: horizontal_card_hybrid[6]
7: horizontal_card_hybrid[7]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 125 KiB

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 KiB

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 127 KiB

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 135 KiB

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 135 KiB

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -79,15 +79,35 @@ init script:
card_hybrid_2 :=
{
masked_blend(mask: "special_blend_card.png", dark: template(colors.0), light: template(colors.1))
masked_blend(
mask: "special_blend_card.png",
light: template(colors[1 + shift]),
dark: template(colors[0 + shift])
)
}@(shift:0)
card_hybrid_3 :=
{
masked_blend(
mask: "special_blend_card_v.png",
light: template(colors.2),
dark: card_hybrid_2(shift:0)
)
}
card_hybrid_4 :=
{
masked_blend(
mask: "special_blend_card_v.png",
light: card_hybrid_2(shift:2),
dark: card_hybrid_2(shift:0)
)
}
horizontal_card_hybrid :=
[
0: horizontal_card_hybrid[0]
1: horizontal_card_hybrid[1]
2: card_hybrid_2
3: horizontal_card_hybrid[3]
4: horizontal_card_hybrid[4]
3: card_hybrid_3
4: card_hybrid_4
5: horizontal_card_hybrid[5]
6: horizontal_card_hybrid[6]
7: horizontal_card_hybrid[7]