mirror of
https://github.com/magefree/mage.git
synced 2025-12-29 23:12:10 -08:00
[TDM] Implement Channeled Dragonfire and add skip list for harmonize
This commit is contained in:
parent
5f9978a083
commit
bb07247282
4 changed files with 71 additions and 0 deletions
|
|
@ -0,0 +1,27 @@
|
|||
package mage.abilities.keyword;
|
||||
|
||||
import mage.abilities.SpellAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.cards.Card;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
* TODO: Implement this
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class HarmonizeAbility extends SpellAbility {
|
||||
|
||||
public HarmonizeAbility(Card card, String manaString) {
|
||||
super(new ManaCostsImpl<>(manaString), card.getName(), Zone.GRAVEYARD);
|
||||
}
|
||||
|
||||
private HarmonizeAbility(final HarmonizeAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HarmonizeAbility copy() {
|
||||
return new HarmonizeAbility(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue