[THS] Added 11 blue cards.

This commit is contained in:
LevelX2 2013-09-10 16:42:32 +02:00
parent 478bd3979b
commit 36ecc1e121
15 changed files with 1044 additions and 4 deletions

View file

@ -88,7 +88,7 @@ public class ScryEffect extends OneShotEffect<ScryEffect> {
target1.clearChosen();
}
// move cards to the top of the library
int onTop = cards.size();
int onBottom = scryNumber - cards.size();
if (cards.size() > 1) {
TargetCard target2 = new TargetCard(Zone.PICK, filter2);
target2.setRequired(true);
@ -107,7 +107,7 @@ public class ScryEffect extends OneShotEffect<ScryEffect> {
card.moveToZone(Zone.LIBRARY, source.getId(), game, true);
}
game.informPlayers(new StringBuilder(player.getName()).append(" puts ")
.append(onTop).append(onTop == 1 ?" card":"cards")
.append(onBottom).append(onBottom == 1 ?" card":" cards")
.append(" on the bottom of his or her library (scry ")
.append(scryNumber).append(")").toString());
return true;

View file

@ -47,7 +47,11 @@ import mage.game.stack.Spell;
public class HeroicAbility extends TriggeredAbilityImpl<HeroicAbility> {
public HeroicAbility(Effect effect) {
super(Zone.BATTLEFIELD, effect, false);
this(effect, false);
}
public HeroicAbility(Effect effect, boolean optional) {
super(Zone.BATTLEFIELD, effect, optional);
}
public HeroicAbility(final HeroicAbility ability) {