Commit 8710225a authored by pichoro's avatar pichoro

Added proper sorting for splits.

Changed modes of some keywords.
Updated forecast so it actually works.
parent 44ff78ca
...@@ -127,7 +127,8 @@ init script: ...@@ -127,7 +127,8 @@ init script:
is_colorless := filter_rule(match: "^colorless") + {input != ""}; is_colorless := filter_rule(match: "^colorless") + {input != ""};
is_artifact := filter_rule(match: "^artifact") + {input != ""}; is_artifact := filter_rule(match: "^artifact") + {input != ""};
sort_index := { sort_index := {
if card.card_color=="white" then "A" if card.casting_cost_2 !="" and card.card_color != card.card_color_2 then "H"
else if card.card_color=="white" then "A"
else if card.card_color=="blue" then "B" else if card.card_color=="blue" then "B"
else if card.card_color=="black" then "C" else if card.card_color=="black" then "C"
else if card.card_color=="red" then "D" else if card.card_color=="red" then "D"
...@@ -1389,7 +1390,7 @@ keyword: ...@@ -1389,7 +1390,7 @@ keyword:
keyword: keyword:
keyword: Denimwalk keyword: Denimwalk
match: Denimwalk match: Denimwalk
mode: core mode: old
reminder: If defending player is wearing any clothing made of denim, this creature is unblockable. reminder: If defending player is wearing any clothing made of denim, this creature is unblockable.
keyword: keyword:
keyword: Landwalk keyword: Landwalk
...@@ -1413,7 +1414,7 @@ keyword: ...@@ -1413,7 +1414,7 @@ keyword:
reminder: This creature comes into play with {english_number_a(param1)} +1/+1 counter(s) on it. Whenever another creature comes into play, you may move a +1/+1 counter from this creature onto it. reminder: This creature comes into play with {english_number_a(param1)} +1/+1 counter(s) on it. Whenever another creature comes into play, you may move a +1/+1 counter from this creature onto it.
keyword: keyword:
keyword: Forecast keyword: Forecast
match: Forecast—<atom-param>cost</atom-param>, Reveal this card from your hand: <atom-param>action</atom-param> match: Forecast<atom-param>cost</atom-param>, Reveal <atom-param>name</atom-param> from your hand: <atom-param>action</atom-param>
mode: expert mode: expert
reminder: Play this ability only during your upkeep and only once each turn. reminder: Play this ability only during your upkeep and only once each turn.
keyword: keyword:
...@@ -1454,7 +1455,7 @@ keyword: ...@@ -1454,7 +1455,7 @@ keyword:
keyword: keyword:
keyword: Reach keyword: Reach
match: Reach match: Reach
mode: expert mode: core
reminder: This creature can block creatures with flying. reminder: This creature can block creatures with flying.
keyword: keyword:
keyword: Gravestorm keyword: Gravestorm
...@@ -1464,7 +1465,7 @@ keyword: ...@@ -1464,7 +1465,7 @@ keyword:
keyword: keyword:
keyword: Lifelink keyword: Lifelink
match: Lifelink match: Lifelink
mode: expert mode: core
reminder: Whenever this creature deals damage, you gain that much life. reminder: Whenever this creature deals damage, you gain that much life.
keyword: keyword:
keyword: Absorb keyword: Absorb
......
...@@ -693,7 +693,7 @@ keyword: ...@@ -693,7 +693,7 @@ keyword:
keyword: keyword:
keyword: Denimwalk keyword: Denimwalk
match: Denimwalk match: Denimwalk
mode: core mode: old
reminder: If defending player is wearing any clothing made of denim, this creature is unblockable. reminder: If defending player is wearing any clothing made of denim, this creature is unblockable.
keyword: keyword:
keyword: Landwalk keyword: Landwalk
...@@ -717,7 +717,7 @@ keyword: ...@@ -717,7 +717,7 @@ keyword:
reminder: This creature comes into play with {english_number_a(param1)} +1/+1 counter(s) on it. Whenever another creature comes into play, you may move a +1/+1 counter from this creature onto it. reminder: This creature comes into play with {english_number_a(param1)} +1/+1 counter(s) on it. Whenever another creature comes into play, you may move a +1/+1 counter from this creature onto it.
keyword: keyword:
keyword: Forecast keyword: Forecast
match: Forecast—<atom-param>cost</atom-param>, Reveal this card from your hand: <atom-param>action</atom-param> match: Forecast<atom-param>cost</atom-param>, Reveal <atom-param>name</atom-param> from your hand: <atom-param>action</atom-param>
mode: expert mode: expert
reminder: Play this ability only during your upkeep and only once each turn. reminder: Play this ability only during your upkeep and only once each turn.
keyword: keyword:
...@@ -744,7 +744,7 @@ keyword: ...@@ -744,7 +744,7 @@ keyword:
keyword: Suspend keyword: Suspend
match: Suspend <atom-param>number</atom-param>—<atom-param>mana</atom-param> match: Suspend <atom-param>number</atom-param>—<atom-param>mana</atom-param>
mode: expert mode: expert
reminder: Rather than play this card from your hand, you may pay {param2} and remove it from the game with {english_number_a(param1)} time counter(s) on it. At the beginning of your upkeep, remove a time counter. When the last is removed, play it without paying its mana cost. If it's a creature, it has haste. reminder: Rather than play this card from your hand,{if has_cc() then " you may" else ""} pay {param2} and remove it from the game with {english_number_a(param1)} time counter(s) on it. At the beginning of your upkeep, remove a time counter. When the last is removed, play it without paying its mana cost.{if has_pt() then " It has haste." else ""}
keyword: keyword:
keyword: Vanishing keyword: Vanishing
match: Vanishing <atom-param>number</atom-param> match: Vanishing <atom-param>number</atom-param>
...@@ -758,7 +758,7 @@ keyword: ...@@ -758,7 +758,7 @@ keyword:
keyword: keyword:
keyword: Reach keyword: Reach
match: Reach match: Reach
mode: expert mode: core
reminder: This creature can block creatures with flying. reminder: This creature can block creatures with flying.
keyword: keyword:
keyword: Gravestorm keyword: Gravestorm
...@@ -768,7 +768,7 @@ keyword: ...@@ -768,7 +768,7 @@ keyword:
keyword: keyword:
keyword: Lifelink keyword: Lifelink
match: Lifelink match: Lifelink
mode: expert mode: core
reminder: Whenever this creature deals damage, you gain that much life. reminder: Whenever this creature deals damage, you gain that much life.
keyword: keyword:
keyword: Absorb keyword: Absorb
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment