* Pirate's Pillage - Fixed wrong random discard (see #4365)

This commit is contained in:
Oleg Agafonov 2018-01-08 09:57:09 +04:00
parent 9cb39016dc
commit eb7166aa2f

View file

@ -46,7 +46,7 @@ public class PiratesPillage extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{R}"); super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{R}");
// As an additional cost to cast Pirate's Pillage, discard a card. // As an additional cost to cast Pirate's Pillage, discard a card.
this.getSpellAbility().addCost(new DiscardCardCost(true)); this.getSpellAbility().addCost(new DiscardCardCost(false));
// Draw two cards and create two colorless Treasure artifacts with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool." // Draw two cards and create two colorless Treasure artifacts with "{T}, Sacrifice this artifact: Add one mana of any color to your mana pool."
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2)); this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(2));