mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
convert Oboro, Palace in the clouds to AF_ChangeZone.
This commit is contained in:
@@ -3,6 +3,7 @@ ManaCost:no cost
|
||||
Types:Legendary Land
|
||||
Text:no text
|
||||
K:tap: add U
|
||||
A:AB$ChangeZone | Cost$ 1 | Origin$ Battlefield | Destination$ Hand | SpellDescription$ Return CARDNAME to its owner's hand.
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/oboro_palace_in_the_clouds.jpg
|
||||
SetInfo:SOK|Rare|http://magiccards.info/scans/en/sok/164.jpg
|
||||
|
||||
@@ -353,6 +353,7 @@ class CardFactory_Lands {
|
||||
card.addComesIntoPlayCommand(intoPlay);
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Vivid Crag") || cardName.equals("Vivid Creek") || cardName.equals("Vivid Grove")
|
||||
|| cardName.equals("Vivid Marsh") || cardName.equals("Vivid Meadow")){
|
||||
@@ -465,7 +466,7 @@ class CardFactory_Lands {
|
||||
|
||||
card.setReflectableMana("WUBRG");
|
||||
card.addSpellAbility(tendo);
|
||||
tendo.setDescription("CARDNAME - tap, remove a charge counter: Add one mana of any color to your mana pool");
|
||||
tendo.setDescription("tap, remove a charge counter: Add one mana of any color to your mana pool");
|
||||
tendo.setStackDescription("CARDNAME - tap, remove a charge counter: Add one mana of any color to your mana pool");
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
@@ -844,32 +845,6 @@ class CardFactory_Lands {
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Oboro, Palace in the Clouds")) {
|
||||
final Ability ability = new Ability(card, "1") {
|
||||
|
||||
@Override
|
||||
public boolean canPlayAI() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void resolve() {
|
||||
PlayerZone hand = AllZone.getZone(Constant.Zone.Hand, card.getController());
|
||||
AllZone.GameAction.moveTo(hand, card);
|
||||
}
|
||||
};
|
||||
|
||||
ability.setDescription("1: Return Oboro, Palace in the Clouds to your hand.");
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("Return ").append(card.getName()).append(" to your hand.");
|
||||
ability.setStackDescription(sb.toString());
|
||||
|
||||
card.addSpellAbility(ability);
|
||||
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Gods' Eye, Gate to the Reikai")) {
|
||||
|
||||
@@ -895,6 +870,7 @@ class CardFactory_Lands {
|
||||
card.addDestroyCommand(makeToken);
|
||||
}//*************** END ************ END **************************
|
||||
|
||||
|
||||
//*************** START *********** START **************************
|
||||
else if(cardName.equals("Flagstones of Trokair")) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user