forked from External/mage
30 lines
713 B
Java
30 lines
713 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class CamaridToken extends TokenImpl {
|
|
|
|
public CamaridToken() {
|
|
super("Camarid", "1/1 blue Camarid creature tokens");
|
|
this.setOriginalExpansionSetCode("FEM");
|
|
this.getPower().modifyBaseValue(1);
|
|
this.getToughness().modifyBaseValue(1);
|
|
this.color.setBlue(true);
|
|
this.getSubtype(null).add(SubType.CAMARID);
|
|
this.addCardType(CardType.CREATURE);
|
|
}
|
|
|
|
public CamaridToken(final CamaridToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public CamaridToken copy() {
|
|
return new CamaridToken(this);
|
|
}
|
|
}
|