mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
- Added the keyword "Skip your next untap step.", fixed Brine Elemental.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user