mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[MID] added placeholder disturb mechanic
This commit is contained in:
parent
24f6820b1b
commit
a6dad60d48
3 changed files with 20 additions and 1 deletions
|
|
@ -0,0 +1,18 @@
|
|||
package mage.abilities.keyword;
|
||||
|
||||
import mage.abilities.SpellAbility;
|
||||
import mage.abilities.costs.Cost;
|
||||
import mage.constants.SpellAbilityType;
|
||||
import mage.constants.TimingRule;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
* @author weirddan455
|
||||
* TODO: this is currently implemented in a pull request
|
||||
*/
|
||||
public class DisturbAbility extends SpellAbility {
|
||||
|
||||
public DisturbAbility(Cost cost, TimingRule timingRule) {
|
||||
super(null, "", Zone.GRAVEYARD, SpellAbilityType.BASE_ALTERNATE);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue