mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- 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:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
9
res/cardsfolder/noggle_bridgebreaker.txt
Normal file
9
res/cardsfolder/noggle_bridgebreaker.txt
Normal 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
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user