mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 12:49:39 -08:00
* 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:
parent
6d5ff0c1c4
commit
310347fc8b
4 changed files with 54 additions and 19 deletions
|
|
@ -51,5 +51,11 @@ public class Magic2015 extends ExpansionSet {
|
|||
this.numBoosterUncommon = 3;
|
||||
this.numBoosterRare = 1;
|
||||
this.ratioBoosterMythic = 8;
|
||||
/* There are 15 additional cards, numbered 270–284, 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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue