// {2}, {tap}: Draw a card if you have seven or more cards in hand.
Ability ability = new ConditionalActivatedAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), new GenericManaCost(2),
new CardsInHandCondition(CardsInHandCondition.CountType.MORE_THAN, 6),
"Draw a card if you have seven or more cards in hand.");
ability.addCost(new TapSourceCost());
this.addAbility(ability);
}
public ScrollOfOrigins(final ScrollOfOrigins card) {
super(card);