mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[STX] Implemented Sedgemoor Witch
This commit is contained in:
parent
34ef401246
commit
548ac048d7
5 changed files with 57 additions and 8 deletions
|
|
@ -9,9 +9,9 @@ import mage.constants.SubType;
|
|||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class PestToken2 extends TokenImpl {
|
||||
public final class WitherbloomToken extends TokenImpl {
|
||||
|
||||
public PestToken2() {
|
||||
public WitherbloomToken() {
|
||||
super("Pest", "1/1 black and green Pest creature token with \"When this creature dies, you gain 1 life.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
|
|
@ -23,11 +23,11 @@ public final class PestToken2 extends TokenImpl {
|
|||
this.addAbility(new DiesSourceTriggeredAbility(new GainLifeEffect(1)));
|
||||
}
|
||||
|
||||
private PestToken2(final PestToken2 token) {
|
||||
private WitherbloomToken(final WitherbloomToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public PestToken2 copy() {
|
||||
return new PestToken2(this);
|
||||
public WitherbloomToken copy() {
|
||||
return new WitherbloomToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue