[MH2] Implemented General Ferrous Rokiric (#7868)

Co-authored-by: Evan Kranzler <theelk801@gmail.com>
This commit is contained in:
Daniel Bomar 2021-05-31 17:50:24 -05:00 committed by GitHub
parent 90c891d1f8
commit 4972e050dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 81 additions and 0 deletions

View file

@ -0,0 +1,27 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
public class RedWhiteGolemToken extends TokenImpl {
public RedWhiteGolemToken() {
super("Golem", "4/4 red and white Golem artifact creature token");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.GOLEM);
color.setRed(true);
color.setWhite(true);
power = new MageInt(4);
toughness = new MageInt(4);
}
private RedWhiteGolemToken(final RedWhiteGolemToken token) {
super(token);
}
public RedWhiteGolemToken copy() {
return new RedWhiteGolemToken(this);
}
}