forked from External/mage
- fixed wrong Elemental token images in BFZ's cards (Omnath, Locus of Rage and Seed Guardian); - fixed wrong Elemental token image in OGW's cards (Chandra Flamecaller); - removed unnecessary tokens from AKH, HOU and EMN (card duplicates); - fixed missing Goblin token in DOM; - fixed missing Bird Illusion token in GRN; - fixed same Zombie token in C19;
34 lines
835 B
Java
34 lines
835 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.TrampleAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author spjspj
|
|
*/
|
|
public final class RhinoToken extends TokenImpl {
|
|
|
|
public RhinoToken() {
|
|
super("Rhino", "4/4 green Rhino creature token with trample");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setGreen(true);
|
|
subtype.add(SubType.RHINO);
|
|
power = new MageInt(4);
|
|
toughness = new MageInt(4);
|
|
addAbility(TrampleAbility.getInstance());
|
|
|
|
availableImageSetCodes.addAll(Arrays.asList("DGM", "RTR", "MH1", "C19"));
|
|
}
|
|
|
|
public RhinoToken(final RhinoToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public RhinoToken copy() {
|
|
return new RhinoToken(this);
|
|
}
|
|
}
|