forked from External/mage
* Added Cartouche of Strength * Added Nest of Scarabs (More correct implementation than existing one) * Added Soul-Scar Mage * Added Battlefield Scavenger
12 lines
No EOL
284 B
Java
12 lines
No EOL
284 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());
|
|
}
|
|
} |