From 06e184f7f0c5259c7e296eeaaa951fbeee1265a7 Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 22:33:14 +0000 Subject: [PATCH] - Added Urabrask the Hidden. --- .gitattributes | 1 + res/cardsfolder/urabrask_the_hidden.txt | 11 +++++++++++ src/forge/PlayerZone_ComesIntoPlay.java | 1 + 3 files changed, 13 insertions(+) create mode 100644 res/cardsfolder/urabrask_the_hidden.txt diff --git a/.gitattributes b/.gitattributes index 687d8e8e1b9..6b59fa56959 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7218,6 +7218,7 @@ res/cardsfolder/uproot.txt -text svneol=native#text/plain res/cardsfolder/upwelling.txt -text svneol=native#text/plain res/cardsfolder/ur_drago.txt -text svneol=native#text/plain res/cardsfolder/ur_golems_eye.txt -text svneol=native#text/plain +res/cardsfolder/urabrask_the_hidden.txt -text svneol=native#text/plain res/cardsfolder/urborg_drake.txt -text svneol=native#text/plain res/cardsfolder/urborg_elf.txt -text svneol=native#text/plain res/cardsfolder/urborg_emissary.txt -text svneol=native#text/plain diff --git a/res/cardsfolder/urabrask_the_hidden.txt b/res/cardsfolder/urabrask_the_hidden.txt new file mode 100644 index 00000000000..994e491198c --- /dev/null +++ b/res/cardsfolder/urabrask_the_hidden.txt @@ -0,0 +1,11 @@ +Name:Urabrask the Hidden +ManaCost:3 R R +Types:Legendary Creature Praetor +Text:Creatures your opponents control enter the battlefield tapped. +PT:4/4 +K:stPumpAll:Creature.YouCtrl:0/0/Haste:No Condition:Creatures you control have haste. +SVar:PlayMain1:TRUE +SVar:BuffedBy:Creature +SVar:Rarity:Mythic +SVar:Picture:http://www.wizards.com/global/images/magic/general/urabrask_the_hidden.jpg +End \ No newline at end of file diff --git a/src/forge/PlayerZone_ComesIntoPlay.java b/src/forge/PlayerZone_ComesIntoPlay.java index 96cbe2872c8..9818a41261f 100644 --- a/src/forge/PlayerZone_ComesIntoPlay.java +++ b/src/forge/PlayerZone_ComesIntoPlay.java @@ -27,6 +27,7 @@ public class PlayerZone_ComesIntoPlay extends DefaultPlayerZone { //final Player player = c.getController(); if(trigger && ((CardFactoryUtil.oppHasKismet(c.getController()) && (c.isLand() || c.isCreature() || c.isArtifact())) + || (AllZoneUtil.isCardInPlay("Urabrask the Hidden",c.getController().getOpponent()) && c.isCreature()) || (AllZoneUtil.isCardInPlay("Root Maze") && (c.isLand() || c.isArtifact())) || (AllZoneUtil.isCardInPlay("Orb of Dreams") && c.isPermanent()))) c.tap();