mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
[SNC] Implemented Jinnie Fay, Jetmir's Second
This commit is contained in:
parent
9ead88bacb
commit
c9aa98af09
4 changed files with 157 additions and 0 deletions
|
|
@ -0,0 +1,31 @@
|
|||
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 CatHasteToken extends TokenImpl {
|
||||
|
||||
public CatHasteToken() {
|
||||
super("Cat Token", "2/2 green Cat creature token with haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.CAT);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
private CatHasteToken(final CatHasteToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public CatHasteToken copy() {
|
||||
return new CatHasteToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DogVigilanceToken extends TokenImpl {
|
||||
|
||||
public DogVigilanceToken() {
|
||||
super("Dog Token", "3/1 green Dog creature token with vigilance");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.DOG);
|
||||
|
||||
color.setGreen(true);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
this.addAbility(VigilanceAbility.getInstance());
|
||||
}
|
||||
|
||||
private DogVigilanceToken(final DogVigilanceToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public DogVigilanceToken copy() {
|
||||
return new DogVigilanceToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue