Added colorless frames for magic-promo, magic-old, and magic-old-split.
Updated vanguard keywords. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@378 0fc631ac-6414-0410-93d0-97cfa31319b6
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 57 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 57 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 72 KiB |
@@ -1319,6 +1319,11 @@ keyword:
|
||||
match: Protection from <atom-param>name</atom-param>
|
||||
mode: core
|
||||
reminder: This creature can’t be blocked, targeted, dealt damage, enchanted, or equipped by anything {english_singular(param1)}.
|
||||
keyword:
|
||||
keyword: Regeneration
|
||||
match: Regenerate
|
||||
mode: inline
|
||||
reminder: The next time this creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.
|
||||
keyword:
|
||||
keyword: Bands with other
|
||||
match: Bands with other <atom-param>name</atom-param>
|
||||
@@ -1690,8 +1695,3 @@ keyword:
|
||||
match: Fortify <atom-param>cost</atom-param>
|
||||
mode: expert
|
||||
reminder: {param1}: Attach to target land you control. Fortify only as a sorcery. This card comes into play unattached and stays in play if the land leaves play.
|
||||
keyword:
|
||||
keyword: Regeneration
|
||||
match: Regenerate
|
||||
mode: inline
|
||||
reminder: The next time this creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.
|
||||
|
||||
@@ -124,6 +124,11 @@ init script:
|
||||
if mode == "pseudo" then "<i-auto>{keyword}</i-auto>"
|
||||
else "{keyword}<atom-reminder><i> ({process_english_hints(reminder)})</i></atom-reminder>" }
|
||||
) +
|
||||
# step 2b : move inline keywords' reminder text to the end of the line
|
||||
replace_rule(
|
||||
match: "(<atom-reminder-inline>.*</atom-reminder-inline></kw[^>]*>)([^\n(]+)",
|
||||
replace: "\\2\\1"
|
||||
) +
|
||||
# step 3 : expand shortcut words ~ and CARDNAME
|
||||
replace_rule(
|
||||
match: "~|~THIS~|CARDNAME",
|
||||
@@ -380,6 +385,9 @@ keyword mode:
|
||||
keyword mode:
|
||||
name: pseudo
|
||||
description: Pseudo keyword / named ability (Hellbent, Threshold, etc.)
|
||||
keyword mode:
|
||||
name: inline
|
||||
description: Inline keyword, reminder text at end of line (Scry, Regenerate, etc.)
|
||||
keyword mode:
|
||||
is default: true
|
||||
name: custom
|
||||
@@ -483,6 +491,11 @@ keyword:
|
||||
match: Protection from <atom-param>name</atom-param>
|
||||
mode: core
|
||||
reminder: This creature can’t be blocked, targeted, dealt damage, enchanted, or equipped by anything {english_singular(param1)}.
|
||||
keyword:
|
||||
keyword: Regeneration
|
||||
match: Regenerate
|
||||
mode: inline
|
||||
reminder: The next time this creature would be destroyed this turn, it isn't. Instead tap it, remove all damage from it, and remove it from combat.
|
||||
keyword:
|
||||
keyword: Bands with other
|
||||
match: Bands with other <atom-param>name</atom-param>
|
||||
@@ -635,8 +648,12 @@ keyword:
|
||||
keyword:
|
||||
keyword: Scry
|
||||
match: Scry <atom-param>number</atom-param>
|
||||
mode: expert
|
||||
reminder: Look at the top {english_number_multiple(param1)} card(s) of your library. Put any number of them on the bottom of your library in any order and the rest on top of your library in any order.
|
||||
mode: inline
|
||||
reminder:
|
||||
To scry {param1}, look at the top {
|
||||
if param1.value==1 then "card of your library, then you may put that card on the bottom of your library."
|
||||
else "{english_number(param1)} cards of your library. Put any number of them on the bottom of your library in any order and the rest on top in any order."
|
||||
}
|
||||
keyword:
|
||||
keyword: Sunburst
|
||||
match: Sunburst
|
||||
@@ -809,8 +826,12 @@ keyword:
|
||||
keyword:
|
||||
keyword: Fateseal
|
||||
match: Fateseal <atom-param>number</atom-param>
|
||||
mode: expert
|
||||
reminder: Look at the top {english_number_multiple(param1)} card(s) of an opponent's library, then put any number of them on the bottom of that player's library and the rest on top in any order.
|
||||
mode: inline
|
||||
reminder:
|
||||
Look at the top {
|
||||
if param1.value==1 then "card of an opponent's library, then you may put it on the bottom of that player's library."
|
||||
else "{english_number(param1)} cards of an opponent's library, then put any number of them on the bottom of that player's library and the rest on top in any order."
|
||||
}
|
||||
keyword:
|
||||
keyword: Transfigure
|
||||
match: Transfigure <atom-param>cost</atom-param>
|
||||
|
||||