mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[STX] Implemented Magma Opus
This commit is contained in:
parent
8f37428518
commit
f831eac6fc
3 changed files with 120 additions and 0 deletions
|
|
@ -0,0 +1,30 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class PrismariToken extends TokenImpl {
|
||||
|
||||
public PrismariToken() {
|
||||
super("Elemental", "4/4 blue and red Elemental creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.ELEMENTAL);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
}
|
||||
|
||||
private PrismariToken(final PrismariToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PrismariToken copy() {
|
||||
return new PrismariToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue