mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[MH2] Implemented Sojourner's Companion
This commit is contained in:
parent
5d15eca514
commit
1c6f8ae035
3 changed files with 72 additions and 0 deletions
|
|
@ -0,0 +1,30 @@
|
|||
package mage.abilities.keyword;
|
||||
|
||||
import mage.abilities.costs.Cost;
|
||||
import mage.constants.CardType;
|
||||
import mage.filter.common.FilterLandCard;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class ArtifactLandcyclingAbility extends CyclingAbility {
|
||||
|
||||
private static final FilterLandCard filter = new FilterLandCard("artifact land card");
|
||||
|
||||
static {
|
||||
filter.add(CardType.ARTIFACT.getPredicate());
|
||||
}
|
||||
|
||||
public ArtifactLandcyclingAbility(Cost cost) {
|
||||
super(cost, filter, "Artifact landcycling");
|
||||
}
|
||||
|
||||
private ArtifactLandcyclingAbility(final ArtifactLandcyclingAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ArtifactLandcyclingAbility copy() {
|
||||
return new ArtifactLandcyclingAbility(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue