NEO Update

This commit is contained in:
CajunAvenger
2022-02-08 16:55:24 -06:00
parent a955427a25
commit 496ed9d775
225 changed files with 5126 additions and 99 deletions

View File

@@ -4,6 +4,8 @@ include file: language
# needed by all style files anyway
include file: /magic-blends.mse-include/new-blends
############################################################## version check
version_date := {"2022-01-30"}
############################################################## Sorting mana symbols
# correctly sort a mana symbol (no guild mana)
@@ -1811,4 +1813,18 @@ if_scripts := {
)
field := expand_facecodes[field] or else field
if face_scripts[func](face, field:field, query:query) or else false then t else f
}
}
white_text := {false}
phy_reminder := {
phy_match := filter_text(input, match:"(/[WUBRG])+", in_context:"H<match>")
letters := split_text(phy_match, match:"/")
reminder_text := ""
if length(letters) == 2 then
reminder_text := "[H/" + letters[1] + "] can be paid with [" + letters[1] + "] or 2 life."
else if length(letters) > 2 then
reminder_text := "[H/" + letters[1] + "/" + letters[2] + "] can be paid with [" + letters[1] + "], " + "[" + letters[2] + "], or 2 life."
else
reminder_text := ""
reminder_text
}