mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 04:42:07 -08:00
Merge pull request #6541 from gp66/tokens-with-x-power-toughness
Tokens with x power toughness
This commit is contained in:
commit
19af91cf18
4 changed files with 11 additions and 0 deletions
|
|
@ -10,6 +10,9 @@ package mage.game.permanent.token;
|
|||
*/
|
||||
public final class DinosaurBeastToken extends TokenImpl {
|
||||
|
||||
public DinosaurBeastToken() {
|
||||
this(0);
|
||||
}
|
||||
public DinosaurBeastToken(int xValue) {
|
||||
super("Dinosaur Beast", "X/X green Dinosaur Beast creature token with trample");
|
||||
cardType.add(CardType.CREATURE);
|
||||
|
|
|
|||
|
|
@ -11,6 +11,9 @@ import mage.constants.SubType;
|
|||
*/
|
||||
public final class PurphorossInterventionToken extends TokenImpl {
|
||||
|
||||
public PurphorossInterventionToken() {
|
||||
this(0);
|
||||
}
|
||||
public PurphorossInterventionToken(int power) {
|
||||
super("Elemental", "X/1 red Elemental creature token with trample and haste");
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
|
|
|
|||
|
|
@ -10,6 +10,9 @@ import mage.constants.SubType;
|
|||
*/
|
||||
public final class SharkToken extends TokenImpl {
|
||||
|
||||
public SharkToken() {
|
||||
this(0);
|
||||
}
|
||||
public SharkToken(int xValue) {
|
||||
super("Shark", "X/X blue Shark creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
|
|
|
|||
|
|
@ -53,6 +53,8 @@ public abstract class TokenImpl extends MageObjectImpl implements Token {
|
|||
}
|
||||
}
|
||||
|
||||
public TokenImpl() { }
|
||||
|
||||
public TokenImpl(String name, String description) {
|
||||
this.name = name;
|
||||
this.description = description;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue