mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[KHM] added Foretell placeholder ability
This commit is contained in:
parent
0f4d90b871
commit
bb827eafbf
3 changed files with 44 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue