mirror of
https://github.com/correl/mage.git
synced 2025-03-30 17:00:10 -09:00
fixed Selesnya Locket producing red mana instead of white
This commit is contained in:
parent
6f57518377
commit
4e5bdb5cff
2 changed files with 3 additions and 3 deletions
Mage.Sets/src/mage/cards
|
@ -23,8 +23,8 @@ public final class BorosLocket extends CardImpl {
|
|||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}");
|
||||
|
||||
// {T}: Add {R} or {W}.
|
||||
this.addAbility(new WhiteManaAbility());
|
||||
this.addAbility(new RedManaAbility());
|
||||
this.addAbility(new WhiteManaAbility());
|
||||
|
||||
// {R/W}{R/W}{R/W}{R/W}, {T}, Sacrifice Boros Locket: Draw two cards.
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
|
|
|
@ -8,7 +8,7 @@ import mage.abilities.costs.common.TapSourceCost;
|
|||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.mana.GreenManaAbility;
|
||||
import mage.abilities.mana.RedManaAbility;
|
||||
import mage.abilities.mana.WhiteManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
@ -24,7 +24,7 @@ public final class SelesnyaLocket extends CardImpl {
|
|||
|
||||
// {T}: Add {G} or {W}.
|
||||
this.addAbility(new GreenManaAbility());
|
||||
this.addAbility(new RedManaAbility());
|
||||
this.addAbility(new WhiteManaAbility());
|
||||
|
||||
// {G/W}{G/W}{G/W}{G/W}, {T}, Sacrifice Selesnya Locket: Draw two cards.
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
|
|
Loading…
Add table
Reference in a new issue