mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[DMC] Implement Jared Carthalion (#9549)
* [DMC] Implement Jared Carthalion * Applied requested changes
This commit is contained in:
parent
ecd43c07e2
commit
fddec2ae9c
4 changed files with 174 additions and 0 deletions
|
|
@ -436,6 +436,7 @@ public enum SubType {
|
|||
GRIST("Grist", SubTypeSet.PlaneswalkerType),
|
||||
HUATLI("Huatli", SubTypeSet.PlaneswalkerType),
|
||||
JACE("Jace", SubTypeSet.PlaneswalkerType),
|
||||
JARED("Jared", SubTypeSet.PlaneswalkerType),
|
||||
JESKA("Jeska", SubTypeSet.PlaneswalkerType),
|
||||
KAITO("Kaito", SubTypeSet.PlaneswalkerType),
|
||||
KARN("Karn", SubTypeSet.PlaneswalkerType),
|
||||
|
|
|
|||
|
|
@ -0,0 +1,39 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.InfoEffect;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
* @author PurpleCrowbar
|
||||
*/
|
||||
public final class KavuAllColorToken extends TokenImpl {
|
||||
|
||||
public KavuAllColorToken() {
|
||||
super("Kavu Token", "3/3 Kavu creature token with trample that's all colors");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.KAVU);
|
||||
color.setWhite(true);
|
||||
color.setBlue(true);
|
||||
color.setBlack(true);
|
||||
color.setRed(true);
|
||||
color.setGreen(true);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
this.addAbility(TrampleAbility.getInstance());
|
||||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new InfoEffect("This creature is all colors")));
|
||||
setOriginalExpansionSetCode("DMC");
|
||||
}
|
||||
|
||||
public KavuAllColorToken(final KavuAllColorToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public KavuAllColorToken copy() {
|
||||
return new KavuAllColorToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue