mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
[DSK] Implement Toby, Beastie Befriender
This commit is contained in:
parent
3acab4a76d
commit
2b970d676c
3 changed files with 95 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.CantAttackAloneAbility;
|
||||
import mage.abilities.keyword.CantBlockAloneAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BeastieToken extends TokenImpl {
|
||||
|
||||
public BeastieToken() {
|
||||
super("Beast Token", "4/4 white Beast creature token with \"This creature can't attack or block alone.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.BEAST);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
|
||||
this.addAbility(new CantAttackAloneAbility());
|
||||
this.addAbility(CantBlockAloneAbility.getInstance());
|
||||
}
|
||||
|
||||
private BeastieToken(final BeastieToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BeastieToken copy() {
|
||||
return new BeastieToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue