forked from External/mage
21 lines
No EOL
467 B
Java
21 lines
No EOL
467 B
Java
package mage.abilities.effects.common;
|
|
|
|
import mage.abilities.costs.common.DiscardCardCost;
|
|
|
|
/**
|
|
* @author stravant
|
|
*/
|
|
public class RummageEffect extends DoIfCostPaid {
|
|
public RummageEffect() {
|
|
super(new DrawCardSourceControllerEffect(1), new DiscardCardCost());
|
|
}
|
|
|
|
protected RummageEffect(final RummageEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
@Override
|
|
public RummageEffect copy() {
|
|
return new RummageEffect(this);
|
|
}
|
|
} |