mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
[CMR] Implemented Amphin Mutineer
This commit is contained in:
parent
ee03e4e862
commit
0c6891e323
3 changed files with 125 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SalamnderWarriorToken extends TokenImpl {
|
||||
|
||||
public SalamnderWarriorToken() {
|
||||
super("Salamander Warrior", "4/3 blue Salamander Warrior creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.SALAMANDER);
|
||||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(3);
|
||||
}
|
||||
|
||||
public SalamnderWarriorToken(final SalamnderWarriorToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public SalamnderWarriorToken copy() {
|
||||
return new SalamnderWarriorToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue