mirror of
https://github.com/magefree/mage.git
synced 2025-12-29 15:02:13 -08:00
[WHO] Implement Cult of Skaro
This commit is contained in:
parent
ad29594c56
commit
bdf6aa5379
3 changed files with 104 additions and 0 deletions
33
Mage/src/main/java/mage/game/permanent/token/DalekToken.java
Normal file
33
Mage/src/main/java/mage/game/permanent/token/DalekToken.java
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.MenaceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DalekToken extends TokenImpl {
|
||||
|
||||
public DalekToken() {
|
||||
super("Dalek Token", "3/3 black Dalek artifact creature token with menace");
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.DALEK);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
|
||||
addAbility(new MenaceAbility(false));
|
||||
}
|
||||
|
||||
private DalekToken(final DalekToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DalekToken copy() {
|
||||
return new DalekToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue