mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Implemented Retrofitter Foundry
This commit is contained in:
parent
dca3237d6d
commit
fdf8c99d8a
3 changed files with 116 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue