- Added the keyword "Skip your next untap step.", fixed Brine Elemental.

This commit is contained in:
Sloth
2012-02-06 10:00:07 +00:00
parent 1b43904ba6
commit c0931391d7
2 changed files with 7 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ Text:no text
PT:5/4
K:Morph:5 U U
T:Mode$ TurnFaceUp | ValidCard$ Card.Self | Execute$ TrigPump | TriggerDescription$ When CARDNAME is turned face up, each opponent skips his or her next untap step.
SVar:TrigPump:AB$Pump | Cost$ 0 | Defined$ Opponent | KW$ Skip your next draw step. | Permanent$ True
SVar:TrigPump:AB$Pump | Cost$ 0 | Defined$ Opponent | KW$ Skip your next untap step. | Permanent$ True
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/brine_elemental.jpg
SetInfo:TSP|Uncommon|http://magiccards.info/scans/en/ts/50.jpg

View File

@@ -44,6 +44,12 @@ public class PhaseUtil {
* @return a boolean.
*/
private static boolean skipUntap(final Player p) {
if (p.hasKeyword("Skip your next untap step.")) {
p.removeKeyword("Skip your next untap step.");
return true;
}
if (AllZoneUtil.isCardInPlay("Sands of Time") || AllZoneUtil.isCardInPlay("Stasis")) {
return true;
}