Implemented Retrofitter Foundry

This commit is contained in:
Evan Kranzler 2018-07-23 15:59:47 -04:00
parent dca3237d6d
commit fdf8c99d8a
3 changed files with 116 additions and 0 deletions

View file

@ -0,0 +1,34 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author TheElk801
*/
public final class RetrofitterFoundryToken extends TokenImpl {
public RetrofitterFoundryToken() {
this("C18");
}
public RetrofitterFoundryToken(String setCode) {
super("Construct", "4/4 colorless Construct artifact creature token");
this.setOriginalExpansionSetCode(setCode);
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.CONSTRUCT);
power = new MageInt(4);
toughness = new MageInt(4);
}
public RetrofitterFoundryToken(final RetrofitterFoundryToken token) {
super(token);
}
public RetrofitterFoundryToken copy() {
return new RetrofitterFoundryToken(this);
}
}