mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
Implemented Forbidden Friendship
This commit is contained in:
parent
9f50fade9f
commit
d8d8e7c174
3 changed files with 65 additions and 0 deletions
|
|
@ -0,0 +1,30 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DinosaurHasteToken extends TokenImpl {
|
||||
|
||||
public DinosaurHasteToken() {
|
||||
super("Dinosaur", "1/1 red Dinosaur creature token with haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.DINOSAUR);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
private DinosaurHasteToken(final DinosaurHasteToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public DinosaurHasteToken copy() {
|
||||
return new DinosaurHasteToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue