[KHM] added Foretell placeholder ability

This commit is contained in:
Evan Kranzler 2021-01-08 08:49:08 -05:00
parent 0f4d90b871
commit bb827eafbf
3 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.abilities.keyword;
import mage.abilities.SpecialAction;
import mage.cards.Card;
import mage.constants.Zone;
/**
* @author TheElk801
*/
public class ForetellAbility extends SpecialAction {
// TODO: Implement this
public ForetellAbility(Card card, String manaCost) {
super(Zone.HAND);
}
private ForetellAbility(ForetellAbility ability) {
super(ability);
}
@Override
public String getRule() {
return "";
}
@Override
public ForetellAbility copy() {
return new ForetellAbility(this);
}
}