mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 12:49:39 -08:00
Added converge test with artifact mana sources.
This commit is contained in:
parent
ae7620918e
commit
0044c9df78
3 changed files with 32 additions and 2 deletions
|
|
@ -45,7 +45,9 @@ import mage.constants.Zone;
|
|||
public class IzzetSignet extends CardImpl {
|
||||
|
||||
public IzzetSignet(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{2}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}");
|
||||
|
||||
// {1}, {T}: Add {U}{R} to your mana pool.
|
||||
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(1, 0, 1, 0, 0, 0, 0, 0), new GenericManaCost(1));
|
||||
ability.addCost(new TapSourceCost());
|
||||
this.addAbility(ability);
|
||||
|
|
|
|||
|
|
@ -45,7 +45,9 @@ import mage.constants.Zone;
|
|||
public class OrzhovSignet extends CardImpl {
|
||||
|
||||
public OrzhovSignet(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{2}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}");
|
||||
|
||||
// {1}, {T}: Add {W}{B} to your mana pool.
|
||||
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(0, 0, 0, 1, 1, 0, 0, 0), new GenericManaCost(1));
|
||||
ability.addCost(new TapSourceCost());
|
||||
this.addAbility(ability);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue