mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28: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
|
Types:Legendary Land
|
||||||
Text:no text
|
Text:no text
|
||||||
K:tap: add U
|
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:Rarity:Rare
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/oboro_palace_in_the_clouds.jpg
|
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
|
SetInfo:SOK|Rare|http://magiccards.info/scans/en/sok/164.jpg
|
||||||
|
|||||||
@@ -353,6 +353,7 @@ class CardFactory_Lands {
|
|||||||
card.addComesIntoPlayCommand(intoPlay);
|
card.addComesIntoPlayCommand(intoPlay);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Vivid Crag") || cardName.equals("Vivid Creek") || cardName.equals("Vivid Grove")
|
else if(cardName.equals("Vivid Crag") || cardName.equals("Vivid Creek") || cardName.equals("Vivid Grove")
|
||||||
|| cardName.equals("Vivid Marsh") || cardName.equals("Vivid Meadow")){
|
|| cardName.equals("Vivid Marsh") || cardName.equals("Vivid Meadow")){
|
||||||
@@ -465,7 +466,7 @@ class CardFactory_Lands {
|
|||||||
|
|
||||||
card.setReflectableMana("WUBRG");
|
card.setReflectableMana("WUBRG");
|
||||||
card.addSpellAbility(tendo);
|
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");
|
tendo.setStackDescription("CARDNAME - tap, remove a charge counter: Add one mana of any color to your mana pool");
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
@@ -844,32 +845,6 @@ class CardFactory_Lands {
|
|||||||
}//*************** END ************ END **************************
|
}//*************** 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 **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Gods' Eye, Gate to the Reikai")) {
|
else if(cardName.equals("Gods' Eye, Gate to the Reikai")) {
|
||||||
|
|
||||||
@@ -895,6 +870,7 @@ class CardFactory_Lands {
|
|||||||
card.addDestroyCommand(makeToken);
|
card.addDestroyCommand(makeToken);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Flagstones of Trokair")) {
|
else if(cardName.equals("Flagstones of Trokair")) {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user