mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
[40K] Implemented Great Unclean One
This commit is contained in:
parent
89eb256c16
commit
53f76c2403
3 changed files with 122 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class PlaguebearerOfNurgleToken extends TokenImpl {
|
||||
|
||||
public PlaguebearerOfNurgleToken() {
|
||||
super("Plaguebearer of Nurgle", "1/3 black Demon creature token named Plaguebearer of Nurgle");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.DEMON);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(3);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("40K");
|
||||
}
|
||||
|
||||
public PlaguebearerOfNurgleToken(final PlaguebearerOfNurgleToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public PlaguebearerOfNurgleToken copy() {
|
||||
return new PlaguebearerOfNurgleToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue