mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Removed unnecesary commented out portion of card
This commit is contained in:
parent
e83a6ebae6
commit
346ebce132
1 changed files with 1 additions and 20 deletions
|
@ -120,22 +120,3 @@ class DeclarationInStoneEffect extends OneShotEffect {
|
||||||
return new DeclarationInStoneEffect(this);
|
return new DeclarationInStoneEffect(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
class ClueArtifactToken extends Token {
|
|
||||||
|
|
||||||
ClueArtifactToken() {
|
|
||||||
super("Clue", "colorless Clue artifact token onto the battlefield with \"{2}, Sacrifice this artifact: Draw a card.\"");
|
|
||||||
this.setOriginalExpansionSetCode("SOI");
|
|
||||||
this.cardType.add(CardType.ARTIFACT);
|
|
||||||
this.subtype.add("Clue");
|
|
||||||
|
|
||||||
// {2}, Sacrifice this artifact: Draw a card.
|
|
||||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), new GenericManaCost(2));
|
|
||||||
SacrificeSourceCost cost = new SacrificeSourceCost();
|
|
||||||
cost.setText("Sacrifice this artifact");
|
|
||||||
ability.addCost(cost);
|
|
||||||
this.addAbility(ability);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
Loading…
Reference in a new issue