* M15 - Fixed that booster generation did also generate cards that are only included in supplemental products and not in boosters.

This commit is contained in:
LevelX2 2014-07-15 01:08:22 +02:00
parent 6d5ff0c1c4
commit 310347fc8b
4 changed files with 54 additions and 19 deletions

View file

@ -51,5 +51,11 @@ public class Magic2015 extends ExpansionSet {
this.numBoosterUncommon = 3;
this.numBoosterRare = 1;
this.ratioBoosterMythic = 8;
/* There are 15 additional cards, numbered 270284, that don't appear in Magic
2015 booster packs. These are reprints from earlier sets that are present in
some supplemental products, including sample decks and the Deck Builder's Toolkit.
These additional cards have a Magic 2015 expansion symbol and are legal in all
formats in which Magic 2015 is legal. */
this.maxCardNumberInBooster = 269;
}
}

View file

@ -56,10 +56,10 @@ public class MidvastProtector extends CardImpl {
this.toughness = new MageInt(3);
// When Midvast Protector enters the battlefield, target creature you control gains protection from the color of your choice until end of turn.
EntersBattlefieldTriggeredAbility ability = new EntersBattlefieldTriggeredAbility(new GainProtectionFromColorTargetEffect(Duration.EndOfTurn), false);
ability.addTarget(new TargetControlledCreaturePermanent());
ability.addChoice(new ChoiceColor());
this.addAbility(ability);
EntersBattlefieldTriggeredAbility ability = new EntersBattlefieldTriggeredAbility(new GainProtectionFromColorTargetEffect(Duration.EndOfTurn), false);
ability.addTarget(new TargetControlledCreaturePermanent());
ability.addChoice(new ChoiceColor());
this.addAbility(ability);
}
public MidvastProtector(final MidvastProtector card) {