mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
[BLB] Implement Tender Wildguide
This commit is contained in:
parent
65217d7f89
commit
cadeeeee66
5 changed files with 96 additions and 1 deletions
|
|
@ -0,0 +1,35 @@
|
|||
package mage.abilities.keyword;
|
||||
|
||||
import mage.abilities.StaticAbility;
|
||||
import mage.abilities.costs.Cost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
* TODO: Implement this
|
||||
*/
|
||||
public class OffspringAbility extends StaticAbility {
|
||||
|
||||
public OffspringAbility(String manaString) {
|
||||
this(new ManaCostsImpl<>(manaString));
|
||||
}
|
||||
|
||||
public OffspringAbility(Cost cost) {
|
||||
super(Zone.ALL, null);
|
||||
}
|
||||
|
||||
private OffspringAbility(final OffspringAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
public OffspringAbility copy() {
|
||||
return new OffspringAbility(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Offspring";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue