mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
[MH2] Implemented General Ferrous Rokiric (#7868)
Co-authored-by: Evan Kranzler <theelk801@gmail.com>
This commit is contained in:
parent
90c891d1f8
commit
4972e050dd
3 changed files with 81 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue