mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +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
|
@ -119,23 +119,4 @@ class DeclarationInStoneEffect extends OneShotEffect {
|
|||
public DeclarationInStoneEffect copy() {
|
||||
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