- Fixed a rare bug with the keyword: When CARDNAME enters the battlefield, return a land you control to its owner's hand.

- Added Noggle Bridgebreaker.
This commit is contained in:
jendave
2011-08-06 07:19:53 +00:00
parent e5e7d4fcaf
commit f9527723a3
4 changed files with 15 additions and 4 deletions

1
.gitattributes vendored
View File

@@ -2425,6 +2425,7 @@ res/cardsfolder/noble_panther.txt -text svneol=native#text/plain
res/cardsfolder/noble_steeds.txt -text svneol=native#text/plain
res/cardsfolder/noble_templar.txt -text svneol=native#text/plain
res/cardsfolder/nocturnal_raid.txt -text svneol=native#text/plain
res/cardsfolder/noggle_bridgebreaker.txt -text svneol=native#text/plain
res/cardsfolder/nomadic_elf.txt -text svneol=native#text/plain
res/cardsfolder/norwood_archers.txt -text svneol=native#text/plain
res/cardsfolder/norwood_ranger.txt -text svneol=native#text/plain

View File

@@ -1,6 +1,6 @@
Name:Juntu Stakes
ManaCost:2
Types:Enchantment
Types:Artifact
Text:Creatures with power 1 or less don't untap during their controllers' untap steps.
K:Permanents don't untap during their controllers' untap steps:Creature.powerLE1
K:SVar:RemAIDeck:True

View File

@@ -0,0 +1,9 @@
Name:Noggle Bridgebreaker
ManaCost:2 UR UR
Types:Creature Noggle Rogue
Text:no text
PT:4/3
K:When CARDNAME enters the battlefield, return a land you control to its owner's hand.
K:SVar:Rarity:Common
K:SVar:Picture:http://www.wizards.com/global/images/magic/general/noggle_bridgebreaker.jpg
End

View File

@@ -668,10 +668,11 @@ public class CardFactory implements NewConstants {
public void execute() {
PlayerZone play = AllZone.getZone(Constant.Zone.Play, card.getController());
CardList choice = new CardList(play.getCards()).getType("Land");
if (!choice.isEmpty()) {
AllZone.InputControl.setInput(CardFactoryUtil.input_targetSpecific(ability, choice,
"Select a land you control.", false, false));
ButtonUtil.disableAll();
}
}//execute()
};//Command
card.addComesIntoPlayCommand(intoPlay);