mirror of
https://github.com/correl/mage.git
synced 2025-03-13 01:09:53 -09:00
missing token images in thb and war
This commit is contained in:
parent
3865c52974
commit
162907b9da
3 changed files with 23 additions and 0 deletions
Mage/src/main/java/mage/game/permanent/token
|
@ -11,6 +11,17 @@ import mage.constants.SubType;
|
|||
*/
|
||||
public final class PurphorossInterventionToken extends TokenImpl {
|
||||
|
||||
public PurphorossInterventionToken() {
|
||||
super("Elemental", "X/1 red Elemental creature token with trample and haste");
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
this.subtype.add(SubType.ELEMENTAL);
|
||||
this.color.setRed(true);
|
||||
this.power = new MageInt(0);
|
||||
this.toughness = new MageInt(1);
|
||||
this.addAbility(TrampleAbility.getInstance());
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
public PurphorossInterventionToken(int power) {
|
||||
super("Elemental", "X/1 red Elemental creature token with trample and haste");
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
|
|
|
@ -10,6 +10,16 @@ import mage.constants.SubType;
|
|||
*/
|
||||
public final class SharkToken extends TokenImpl {
|
||||
|
||||
public SharkToken() {
|
||||
super("Shark", "X/X blue Shark creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.SHARK);
|
||||
power = new MageInt(0);
|
||||
toughness = new MageInt(0);
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
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
Reference in a new issue