Initial commit

This commit is contained in:
CajunAvenger
2021-07-09 02:07:58 -05:00
parent 44a72dbc6f
commit eda330eee8
22968 changed files with 376881 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@@ -0,0 +1,8 @@
mse version: 2.0.0
full name: Magic The Gathering, pride flags
version: 2021-5-26
# This file doesn't do anything, other files in this directory can be included
# in game/style files:
# scripts Includes scripts for blending pride flags
# pins Includes current list of pride flag choices

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 848 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

@@ -0,0 +1,17 @@
# LGBT+ flag choices
choice: lesbian
choice: gay
choice: bi
choice: trans
choice: pan
choice: ace
choice: aro
choice: nonbinary
choice: agender
choice: genderfluid
choice:
name: rainbow
line below: true
choice:
name: reversed

View File

@@ -0,0 +1,18 @@
pin_image := {
count := length(filter_text(input, match:","))+1
rev := chosen(input, choice:"reversed")
if input == "" then ""
else if count == 1 then
"/magic-pride.mse-include/flags/" + input + ".png"
else
(
string := split_text(input, match:", ")
left := if rev then string[1] else string[0]
right := if rev then string[0] else string[1]
if rev and count < 3 then
"/magic-pride.mse-include/flags/" + string[0] + ".png"
else
masked_blend(light:"/magic-pride.mse-include/flags/" + left + ".png", dark:"/magic-pride.mse-include/flags/" + right + ".png", mask:"/magic-pride.mse-include/masks/blendmask.png")
)
}