mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
1) add Index from Apocalypse
2) minor fixes for Ponder
This commit is contained in:
@@ -38,6 +38,7 @@ snow_covered_mountain.jpg http://www.wizards.com/global/images/magic/gene
|
|||||||
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
|
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
|
||||||
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
||||||
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
||||||
|
index.jpg http://www.wizards.com/global/images/magic/general/index.jpg
|
||||||
sage_owl.jpg http://www.wizards.com/global/images/magic/general/sage_owl.jpg
|
sage_owl.jpg http://www.wizards.com/global/images/magic/general/sage_owl.jpg
|
||||||
ponder.jpg http://www.wizards.com/global/images/magic/general/ponder.jpg
|
ponder.jpg http://www.wizards.com/global/images/magic/general/ponder.jpg
|
||||||
daring_leap.jpg http://www.wizards.com/global/images/magic/general/daring_leap.jpg
|
daring_leap.jpg http://www.wizards.com/global/images/magic/general/daring_leap.jpg
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
Index
|
||||||
|
U
|
||||||
|
Sorcery
|
||||||
|
Look at the top five cards of your library, then put them back in any order.
|
||||||
|
|
||||||
Sage Owl
|
Sage Owl
|
||||||
1 U
|
1 U
|
||||||
Creature Bird
|
Creature Bird
|
||||||
|
|||||||
@@ -19205,10 +19205,9 @@ public class CardFactory implements NewConstants {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void resolve() {
|
public void resolve() {
|
||||||
String player = getTargetPlayer();
|
String player = card.getController();
|
||||||
AllZoneUtil.rearrangeTopOfLibrary(player, 3, false);
|
AllZoneUtil.rearrangeTopOfLibrary(player, 3, false);
|
||||||
AllZone.GameAction.promptForShuffle(player);
|
AllZone.GameAction.promptForShuffle(player);
|
||||||
//AllZone.GameAction.drawCards(player, 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -19217,7 +19216,33 @@ public class CardFactory implements NewConstants {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};//spell
|
};//spell
|
||||||
spell.setStackDescription("Rearrange the top 3 cards in your library in any order. You may shuffle you library. Draw a card.");
|
spell.setStackDescription(cardName+" - Rearrange the top 3 cards in your library in any order. You may shuffle you library. Draw a card.");
|
||||||
|
card.clearSpellAbility();
|
||||||
|
card.addSpellAbility(spell);
|
||||||
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
//*************** START *********** START **************************
|
||||||
|
else if(cardName.equals("Index")) {
|
||||||
|
/*
|
||||||
|
* Look at the top five cards of your library, then put them back
|
||||||
|
* in any order.
|
||||||
|
*/
|
||||||
|
final SpellAbility spell = new Spell(card) {
|
||||||
|
private static final long serialVersionUID = -3175286661458692699L;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void resolve() {
|
||||||
|
String player = card.getController();
|
||||||
|
AllZoneUtil.rearrangeTopOfLibrary(player, 5, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean canPlayAI() {
|
||||||
|
//basically the same reason as Sensei's Diving Top
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};//spell
|
||||||
|
spell.setStackDescription(cardName+" - Rearrange the top 5 cards in your library in any order. You may shuffle you library. Draw a card.");
|
||||||
card.clearSpellAbility();
|
card.clearSpellAbility();
|
||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|||||||
Reference in New Issue
Block a user