mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[NEO] Implemented Leech Gauntlet
This commit is contained in:
parent
5c9261d597
commit
37c7573acd
4 changed files with 93 additions and 0 deletions
|
|
@ -0,0 +1,36 @@
|
|||
package mage.abilities.keyword;
|
||||
|
||||
import mage.abilities.ActivatedAbilityImpl;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class ReconfigureAbility extends ActivatedAbilityImpl {
|
||||
|
||||
private final String manaString;
|
||||
|
||||
public ReconfigureAbility(String manaString) {
|
||||
super(Zone.BATTLEFIELD, null);
|
||||
this.manaString = manaString;
|
||||
// TODO: Implement this
|
||||
}
|
||||
|
||||
private ReconfigureAbility(final ReconfigureAbility ability) {
|
||||
super(ability);
|
||||
this.manaString = ability.manaString;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ReconfigureAbility copy() {
|
||||
return new ReconfigureAbility(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Reconfigure " + manaString + " (" + manaString
|
||||
+ ": Attach to target creature you control; " +
|
||||
"or unattach from a creature. Reconfigure only as a sorcery. " +
|
||||
"While attached, this isn’t a creature.)";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue