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

@@ -478,7 +478,7 @@ keyword:
keyword: Dredge
match: Dredge <atom-param>number</atom-param>
mode: expert
reminder: If you would draw a card, instead you mill {english_number(param1)} card(s) instead. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.
reminder: If you would draw a card, you mill {english_number(param1)} card(s) instead. If you do, return this card from your graveyard to your hand. Otherwise, draw a card.
keyword:
keyword: Radiance
match: Radiance
@@ -1489,6 +1489,12 @@ keyword:
match: Pack tactics
mode: pseudo
rules: Pack tactics — Whenever CARDNAME attacks, if you attacked with creatures with total power 6 or greater this combat, [effect].
# Commander 2021
keyword:
keyword: Demonstrate
match: Demonstrate
mode: expert
reminder: When you cast this spell, you may copy it. If you do, choose an opponent to also copy it.
# Midnight Hunt
keyword:
keyword: Daybound
@@ -1514,4 +1520,36 @@ keyword:
keyword: Coven
match: Coven
mode: pseudo
rules: Coven — if you control three or more creatures with different powers, [effect].
rules: Coven — if you control three or more creatures with different powers, [effect].
# Crimson Vow
keyword:
keyword: Cleave
match: Cleave <atom-param>cost</atom-param>
mode: expert
reminder: You may cast this spell for its cleave cost. If you do, remove the words in square brackets.
keyword:
keyword: Training
match: Training
mode: expert
reminder: Whenever this creature attacks with another creature with greater power, put a +1/+1 counter on this creature.
keyword:
keyword: Blood token
match: Blood toke<atom-param>*s</atom-param>
mode: expert
reminder: {if param1.value == "ns" then "Theyre artifacts" else "Its an artifact"} with "1, T, Discard a card, Sacrifice this artifact: Draw a card."
# Kamigawa Neon Dynasty
keyword:
keyword: Reconfigure
match: Reconfigure <atom-param>cost</atom-param>
mode: expert
reminder: {param1}: Attach to target creature you control; or unattach from a creature. Reconfigure only as a sorcery. While attached, this isn't a creature.
keyword:
keyword: modified
match: modified
mode: action
reminder: Equipment, Auras you control, and counters are modifications.
keyword:
keyword: Compleated
match: Compleated
mode: expert
reminder: {phy_reminder(card.casting_cost)} If life was paid, this planeswalker enters with two fewer loyalty counters.

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
}