mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
parent
43a27dfa0c
commit
9ed04cc3c5
4 changed files with 7 additions and 36 deletions
|
|
@ -6,6 +6,8 @@ import mage.constants.SubType;
|
|||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
|
|
@ -21,6 +23,8 @@ public final class DjinnMonkToken extends TokenImpl {
|
|||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("DTK", "IMA");
|
||||
}
|
||||
|
||||
public DjinnMonkToken(final DjinnMonkToken token) {
|
||||
|
|
|
|||
|
|
@ -1,33 +0,0 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class SkywiseTeachingsToken extends TokenImpl {
|
||||
|
||||
public SkywiseTeachingsToken() {
|
||||
super("Djinn Monk Token", "2/2 blue Djinn Monk creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
this.subtype.add(SubType.DJINN);
|
||||
this.subtype.add(SubType.MONK);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public SkywiseTeachingsToken(final SkywiseTeachingsToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public SkywiseTeachingsToken copy() {
|
||||
return new SkywiseTeachingsToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue