mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
[THS] Added 11 blue cards.
This commit is contained in:
parent
478bd3979b
commit
36ecc1e121
15 changed files with 1044 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue